e3dio

Results 76 comments of e3dio

WebTransport client has been available in Chrome Stable since v97 Jan 4 2022, you can open a console and use it right now. It needs a easy to use server...

Below is quick reference to the WebTransport browser client API: ```javascript const wt = new WebTransport(url); // Datagram read for await (const data of wt.datagrams.readable) { /* datagram message */...

Needs to be added can you open PR

Needs to be added to docs see https://github.com/uNetworking/uWebSockets.js/issues/661

You can check each variable in this line https://github.com/uNetworking/uWebSockets.js/blob/binaries/uws.js#L20 `process.platform` `process.arch` `process.versions.modules` for your Node process, and make sure the matching binary is here https://github.com/uNetworking/uWebSockets.js/tree/binaries

> I am running node v14.17.0 That says Node 16, you said Node 14. You should also confirm what version uWS.js you are running, check the node_modules/uWebSockets.js/package.json file and see...

So it should be working for you, I can confirm Node 17 is working for the same system as yours, I don't have Node 16 set up to check

I see some things for Windows error "The specified module could not be found" for it not finding a DLL that it assumes to be there https://stackoverflow.com/questions/13471457/finding-dll-for-the-specified-module-could-not-be-found You could run...

```javascript console.log(process.pid) setTimeout(()=>require('uWebSockets.js'),15000) ``` Run that code, in Process Monitor add filter on that Process ID and start capturing events, then the module will try to load and look for...