miniflare icon indicating copy to clipboard operation
miniflare copied to clipboard

🔥 Fully-local simulator for Cloudflare Workers. For the latest version, see https://github.com/cloudflare/workers-sdk/tree/main/packages/miniflare.

Results 134 miniflare issues
Sort by recently updated
recently updated
newest added

Miniflare version: 2.6.0 While closing the WebSocket from the client side, it is expected to close it in the Durable Object right after, otherwise it won't be closed. So closing...

I have created a new worker using `npx wrangler init` with typescript. I am using the `@aws-sdk/client-eventbridge` package in my worker. However, when I try and mock it in tests...

question

Hey, got hit by "Maximum call stack size exceeded" today with `wrangler pages dev` and visiting the page: ``` [pages:err] RangeError: Maximum call stack size exceeded at Object.getRequestContext (/site/node_modules/@miniflare/shared/src/index.ts:1:1) at...

### Problem The promises passed to `FetchEvent.prototype.waitUntil` cannot be retrieved via `Response.prototype.waitUntil()`. There doesn't seem to be any other way to access them either, but if there is, the [Writing...

enhancement

Hi! First up thanks for an awesome tool I'm bumping into an issue where I'm unable to use `jest-environment-miniflare` for my worker because it's unable to find the Durable Object...

question

Using the following code, and running `miniflare --modules worker.js` results in the file being malformed in a way it shouldn't be, as shown with the image. ![image](https://user-images.githubusercontent.com/46286597/182369630-aa069e63-d551-4a44-9a55-2394586b174b.png) ```js const content...

fixes https://github.com/cloudflare/miniflare/issues/326 When a browser accepts a request, it first converts anything not within utf-8 like so: My request: `http://localhost:8788/ń.html` What the server sees: `http://localhost:8788/%C5%84.html` What miniflare looks for: `%C5%84.html`...

Hello, I don't know what the contributor guidelines for miniflare are but it's a cool project and this is a simple workaround for #162 so hopefully this change can be...

Many frameworks use vite as their bundler, as it has great HMR support. Nuxt, being a widely used example has `nuxi dev` which starts up a dev server (on multiple...