Rafael Gutkowski

Results 21 comments of Rafael Gutkowski

Import maps in workers function properly here, too. ``` deno 1.45.2 (release, aarch64-apple-darwin) v8 12.7.224.12 typescript 5.5.2 ```

I'm also experiencing the same issue: ![screenshot-2024-07-30T190721](https://github.com/user-attachments/assets/7f4bc0de-b0a5-460c-ad6f-86d5d902fc4c)

@popy2k14 thank you for contribution and taking time to responding to your own question. Me and the users appreciate it.

If you have previously installed a package that modifies kernel like I did with LUKS encryption, you should install `nvidia-dkms` along with Linux headers for your kernel version (you have...

Both cases resolve around recursive descent (via `..`). It looks like Redis OG and Upstash Redis have different way of traversing document via JSONPath. Maybe @ademilter or @chronark can shed...

As an alternative, check out [typeson](https://github.com/dfahlander/typeson). It supports different types of binary arrays (including ES6 classes) and optional type registry. I still use devalue in Svelte realm but for server-to-server...

Access to environmental variables depends on runtime you are using. If you are using Cloudflare Workers, bindings and environmental variables should be available in handler context: ```js .put('/:flow_id', async (req,...

I went ahead with handling `Deno.RequestEvent` directly like so: ```ts const server = Deno.listen({ port: 8080 }) // From: // https://deno.com/[email protected]/runtime/http_server_apis#responding-with-a-response async function handle(conn: Deno.Conn) { const httpConn = Deno.serveHttp(conn)...

Here's standalone example: ```ts import * as shed from "https://raw.githubusercontent.com/worker-tools/shed/master/index.ts" export const RootRouter = new shed.WorkerRouter() RootRouter.get("/", () => { const stream = new TransformStream() const writer = stream.writable.getWriter() setInterval(()...