ubarbaxor

Results 10 comments of ubarbaxor

No trouble, that's done ;) Also cleaned up the commit history.

Added tests, fixed package.json / yarn.lock edits. Removing [WIP].

Hey @balthazar I've finished writing the docs. Things are tested, both in the suite and live (fork has been in production for a couple weeks now). What do you think,...

> Do you mind running prettier on all files? I think I saw some extra spaces in test files, otherwise looking very good! Done ! Good catch.

Can confirm the same issue. No transpiler, node v18.3.0, running a standard `package.json`. I had to run it as @suhakesikbas mentioned, using : ```js import Binance from 'binance-api-node' const client...

> I have the same issue. > > I tried with : > > ``` > import Binance from 'binance-api-node' > > const client = Binance.default(options) > ``` > >...

Hey, Seems this keeps popping up and again. This is behaving deferently depending on if your project is transpiled or not, if you're using ESM (`import`) or CommonJS (`require`). Somehow...

I'm using this issue as it's the first result when searching for "Qwik playground broken". Seems to be so again. ![image](https://user-images.githubusercontent.com/26365493/222823051-40065603-d44e-49f5-9988-6c63365092f7.png) ![image](https://user-images.githubusercontent.com/26365493/222823103-b1c62f02-888c-4a43-955a-02b7175dcd1b.png) ``` Error: Unable to require() path "@builder.io/qwik/build" from...

That's up to implementationt atm, but PR's are welcome. In the meantime I've been doing it something like so : ```js const userMsgHandler = update => { if (update.eventType ===...