John Spurlock

Results 54 comments of John Spurlock

Yea it's there Still the recommended approach, so your code doesn't change from underneath you with hot reload.

Ah ok yes, no command line option for that yet. I have some time to implement that now...

Ok, just pushed change 43c4a7ad56ac8a3b34c284920ce57ce1103a7c95 that should do the trick. Can you try it out on your side? Install denoflare as of `43c4a7ad56ac8a3b34c284920ce57ce1103a7c95` to try it out (replace the release...

There's been a regression after one of the recent Deno version upgrades, where sometimes an error in the script bubbles up as that rather unhelpful: `Bad module.default: undefined` As a...

> needs to be a full absolute path Local file paths need to be absolute if using config: e.g. `/Users/whatever/path/to/worker.ts`

Do you mean in `serve` for local testing? Yea it looks like `put`, `delete`, and `list` are not implemented yet. Would need to be wired up to the corresponding api...

Yes, right now in local `serve`, the fetch over isolate rpc doesn't support the `signal` param in fetch options. While you are waiting for this to implemented, you can serve...

hmm, try providing a full path in the config for "main"

change ` "path": "./main_router.ts",` to a fully qualified path in general, denoflare can be called from any directory using named config scripts like this

Ah, I'm able to reproduce only if I'm running `denoflare` in "no-install mode" i.e. deno run --unstable --allow-read --allow-net --allow-env --allow-run \ https://raw.githubusercontent.com/skymethod/denoflare/v0.5.12/cli/cli.ts serve x the `import` statement is considered...