e3dio
e3dio
fix https://github.com/denoland/deno/issues/19277 ```js const headers = new Headers({ 'Set-Cookie': 'Hello=123' }); const { socket, response } = Deno.upgradeWebSocket(request, { headers }); return response; ```
Version: Deno 1.40.2 Logging an object only prints the first 100 characters of any strings in the object. This default needs to be higher. I see there is [Deno.inspect](https://deno.land/[email protected]?s=Deno.inspect) but...
fix https://github.com/denoland/deno/issues/19277 Allow adding headers on Response to Websocket upgrade request Works for both `serveHttp` and `Deno.serve` ```js const headers = new Headers({ 'Set-Cookie': 'Hello=123' }); const { socket, response...
fix https://github.com/denoland/deno/issues/22160 Default to logging full strings up to 10,000 matching Node.js behavior
Version: Deno 1.40.4 `server.shutdown()` should wait for websockets to close to prevent leaking `serverWebSocket`, abort() can force close websockets ```js const port = 3006; Deno.test('httpServerWebSocketShutdown', async t => { const...
Version: Deno 1.40.3 Why does `new WebSocket()` take 2 seconds to open a connection ? It should be instant ```js const port = 3007; const server = Deno.serve({ port },...
Version: Deno 1.40.4 Using `Deno.connect()` and writing to stream, `writer.write()` is supposed to take any `ArrayBufferView` but instead throws for anything other than `Uint8Array` ```js const port = 3006; const...
### What version of Bun is running? 1.1.7 ### What platform is your computer? Linux ### What steps can reproduce the bug? This code including the Tab space in front:...
Add optional genSchema(data) function to auto-generate a schema for a specific dataset. Because it only applies to that set it can optimize to make the smallest possible encoding for that...
Schema can exist as a JavaScript object, and it can be serialized to Json string, this issue is to add optional binary format so schema can be sent as binary...