workers-help
pages-help
general-help
durable-objects
workers-and-pages-discussions
pages-discussions
wrangler
coding-help
kv
š¦rust-on-workers
miniflare
stream
general-discussions
functions
zaraz
ā”instant-logs
email-routing
r2
pubsub-beta
analytics-engine
d1-database
queues
workers-for-platforms
workerd-runtime
web3
š¤turnstile
radar
web-research
logs-engine
cloudflare-go
terraform-provider-cloudflare
workers-ai
browser-rendering-api
logs-and-analytics
next-on-pages
cloudflare-ai
build-caching-beta
hyperdrive
vectorize
ai-gateway
python-workers-beta
vitest-integration-beta
workers-observability
workflows
vite-plugin
Using cloudflare vite-plugin, what secrets/bindings do preview urls use for non-production builds?
wrangler.toml
?
```
[env.preview]
[env.preview.vars]...Bug in Cloudflare dashboard

Is it possible to run Bun.js?
Error when deploying Worker that has binding to EU R2 bucket.
Create alert for high error rate on worker
Worker with --remote not working (Error 1104)
yarn wrangler -e dev dev --remote
yarn wrangler -e dev dev --remote
9354db749b4704ad
...The deploy with workers button no longer creates a fork of the original repo.
Best-practices and errors for CFworkers+Hono API in monorepo

Secret Store In Local Dev Mode?
npx wrangler dev
the console shows :
Secret "MDB_URI" not found
Well Okay the docs say :
``Local development mode...Worker dependencies failed as soon as Bun detected?
packageManager
as [email protected]
and installed devDependencies
of the same version of bun and Node 23.11.0
with BUN_VERSION
as the same version both in my wrangler script and in the web UI.
What's going on and what am I doing wrong?
```log...wrangler dev error

Suddenly all our ctx.waitUntil workers are failing?
How to define RPC methods on a separate file
myFunction = myFunction
but it complains that The RPC receiver does not implement the method "myFunction"
. Since myFunction
uses this
it's defined as:
```ts
export async function myFunction(
this: AuthWorker,...Service binding config with the React template + local dev
Create a New Worker Menu is Missing.

R2 worker fails to put (some) files with error 10001
defining custom domain in routes parameter in wrangler.jsonc impacts local host
RPC `Service<mysvc>` type doesn't have RPC method properties
ACCOUNTS_SERVICE: Service<import("@mymonorepo/services").AccountsService>;
It errors with Property 'myMethod' does not exist on type '{ fetch(input: RequestInfo | URL, init?: RequestInit<CfProperties<unknown>> | undefined): Promise<Response>; connect(address: string | SocketAddress, options?: SocketOptions | undefined): Socket; }'.ts(2339)
...R2.get() throws Unspecified error(0)
Worker Websocket TTL Cleanup
await this.ctx.deleteAll()
in the alarm function.
Somehow this just results in the alarm being continually triggered once every 10 minutes for all eternity. The alarm never stops, which tells me that the DO is never cleaned up.
My current problem I'm trying to solve is to have a client start a long running async REST API call. This api call returns a transaction id which the webpage then listens to for updates using that specific transaction id (which is a durable object websocket server). The worker eventually has a callback invoked from an external server which lets it know the transaction is complete. This callback event is passed onto the durable object which publishes a message to websocket clients. Once the client receives this message (or the TTL is reached in the case that the callback is never invoked), the server should shutdown and the DO clean up....