Nachos

Results 27 comments of Nachos

Hello @dustinvo17 , I did not find any solution for this problem unfortunately. I've tried other approaches which all failed.. If you succeed to stream a video with a youtube...

> I think keeping it separate would make sense. Or what about merging `discojs-node` and `server` and naming the union `discojs-node` (rather than `discojs-server`)? As such users can import client...

@Electroid I believe this is not a duplicate of #6044 , I can console.log stuffs fine using this trick: ```ts const oldConsole = console GlobalRegistrator.register() window.console = oldConsole ``` The...

Quick workaround found: ```ts /// import { GlobalRegistrator } from '@happy-dom/global-registrator' import { describe, test, expect, beforeEach, afterEach } from 'bun:test' beforeEach(() => { const oldConsole = console GlobalRegistrator.register() window.console...

> I'll check on Monday and report it back to you ! Thanks a lot for working on this Did you check? If it works now, I can close the...

Following the guide you mention, to me it appears the bunfig.toml file is not taken into account or the `happydom.ts` is not preloaded properly. It only works when I put...

Still having an issue in Bun v1.0.21 ``` bun install v1.0.21 (837cbd60) 🚚 bun-typesrflow/tfjs-node [1/1] 2 | const MiniPass = require('minipass') 3 | const EE = require('events').EventEmitter 4 | const...

Any updates on this? I am not sure to use this package because it doesn't have typescript support yet!

Seems really nice, will move to yours! For those that still would like to use this package in Typescript, you can wrap [this file](https://github.com/Offroaders123/nbt-js/blob/master/nbt.d.ts) into a `declare module`: ```ts //...