denoflare icon indicating copy to clipboard operation
denoflare copied to clipboard

Develop, test, and deploy Cloudflare Workers with Deno.

Results 27 denoflare issues
Sort by recently updated
recently updated
newest added

I tried to find information about if Denoflare supports Pages + Functions combination. I didn't find any command, so now I am asking is that supported? https://developers.cloudflare.com/pages/platform/functions/

Module-based Cloudflare workers that use no environment bindings to cf-specific services (or have graceful fallbacks) basically work unmodified on [Deno Deploy](https://deno.com/deploy). With an entry point wrapper along the lines of:...

Now that Denoflare's core functionality has been stable for some time, we should start attaching a single-binary version to each release, for folks that don't have Deno installed locally, or...

I have a `index.js` script which imports postgres drivers: ``` import { Client, Pool } from "https://deno.land/x/postgres/mod.ts"; ``` When running I get: ``` mlanza@Marios-MacBook-Air df-ex % denoflare serve hello-local Compiling...

I've browsed through the denoflare CLI code for `serve` and I'm not sure where exactly this would be enabled. It would be so amazing to be able to hit breakpoints...

When I run it locally, it works. When I run it via Github Actions (ubuntu-latest), I get the following error: ``` bundling index into bundle.js... bundle finished (process) in 2400ms...

When running a script via `denoflare serve`, error stracktraces don't have source file path: ``` Error servicing request Error: DenoflareResponse.statusText not implemented at DenoflareResponse.get statusText (blob:null/479bbc34-2f8a-4e03-9c0c-6e2cb57f332e:479:15) at WorkerRouter.#fireError (blob:null/2f968119-42b1-4463-a069-f31f715a2813:774:78) at...

If i change one import in my codebase to the new syntax for npm specifier in Deno. Like below: ![CleanShot 2024-02-02 at 03 39 50@2x](https://github.com/skymethod/denoflare/assets/4084527/1da90be2-d789-49e2-b371-b03e036d8d98) I get this error on...

It's possible to use the API the same way done for AWS to deploy: https://docs.netlify.com/api/get-started/#deploy-with-the-api The same code of https://github.com/Cap-go/capgo is already deployed in Cloudflare, Supabase egde and Netlify edge,...

```js Error: packRequest: init.signal at packRequest (blob:null/74878e83-1a35-4f3c-a67a-93d94adee03e:1003:50) at blob:null/74878e83-1a35-4f3c-a67a-93d94adee03e:765:22 at fetchWithTimeout (blob:null/b9119e73-2aec-4ae2-bd38-1b596890bc68:32228:28) at fallback (blob:null/b9119e73-2aec-4ae2-bd38-1b596890bc68:32263:29 ``` Code to reproduce: ```ts async function fetchWithTimeout(resource: RequestInfo, options: RequestOptions = {}): Promise {...