John Spurlock

Results 54 comments of John Spurlock

Hmm, how would you envision that working? I suppose via [Advanced Mode](https://developers.cloudflare.com/pages/platform/functions/#advanced-mode), where Denoflare could generate a module worker like it does for normal workers? We'd also have to figure...

I see - anything in particular you don't like about `npx wrangler pages dev`? Serving functions as is (in the functions folder) locally would be a bit tricky, as none...

Ah ok - interesting. Well in general, yes I would like to have a similar support for pages repos in `serve` once pages functions is GA, modulo the concerns mentioned...

Thanks for this @lrowe - if you run `denoflare serve` with a config specifying `"localIsolation": "none"`, this might give you a better debugging experience (with source maps), since the script...

Looking into getting this working inside vscode. You should run `serve` in no isolation mode (no hot reloading) - which means setting `"localIsolation": "none"` inside your [.denoflare](https://denoflare.dev/cli/configuration) file for that...

You are on the cutting edge - Cloudflare does not support TCP clients yet (although it's coming soon [1]), but you can use a websocket proxy with a tunnel today...

And as far as making direct network calls when running locally in `denoflare serve`, you might try to run without isolation, i.e. with `localIsolation: "none"` in your config. This way...

Now that Cloudflare has released [Hyperdrive](https://developers.cloudflare.com/hyperdrive/), I think it's time to take another look at this. Would love to get basic `Client` access working over the cf-specific Socket interface, without...

ok, got a working proof of concept connecting to Hyperdrive (to Supabase) from within a Cloudflare worker using a slightly modified deno-postgres: - forked deno-postgres to https://github.com/skymethod/deno-postgres - added a...