Tom Wieland

Results 24 comments of Tom Wieland

```ts import { from } from 'https://deno.land/[email protected]/node/internal/streams/readable.mjs'; const nodeReadableStreamToWebReadableStream = ( inputStream: NodeJS.ReadableStream, ): ReadableStream => { const outputStream = new TransformStream(); const outputStreamWritableWriter = outputStream.writable.getWriter(); (async () => {...

I'm trying to get https://github.com/exhibitionist-digital/ultra deployed (react 18, streaming SSR) but after forking it and removing the import maps I found that it uses dynamic imports, so it's currently not...

I have found https://deno.land/x/nessie which would be a good tool to implement migrations for denodb

Deno emit was split off into a module https://github.com/denoland/deno_emit and that also includes the bundle functionality. I'm just linking it here to document it :)

I'm now trying to work `deno_emit` into the equation so that each `importMap.json` entry will be just one file bundle and then those are cached.

This is harder then it seemed before I started working on it. React is not made to be loaded twice. Even if you load the same version of react but...

I solved it with this: ```ts import { Context as OakContext } from 'https://deno.land/x/[email protected]/mod.ts'; export async function wrapOakRequest( ctx: OakContext, fn: (request: Request) => Promise, ) { const req =...