workers-and-pages-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
🤖turnstile
radar
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
pipelines-beta
containers-beta
WebSocket Test examples
Local development connects to sparrow.cloudflare.com and only accessible using Cloudflare WARP?
wrangler dev is not working.
When I set the log-level to debug these appears: (image 1)...
How do I configure an Apex Domain for Cloudflare Workers & Static Assets?
Env Variables in Workers Static Site [Vite + React]
import.meta.env with viteUncaught Error: Dynamic require of "events" is not supported
Static Assets Support in Workers
c.req.raw.headers.set('Cross-Origin-Embedder-Policy', 'require-corp');
c.req.raw.headers.set('Cross-Origin-Opener-Policy', 'same-origin');
c.req.raw.headers.set('Cross-Origin-Embedder-Policy', 'require-corp');
c.req.raw.headers.set('Cross-Origin-Opener-Policy', 'same-origin');
Direct connection to Postgres DB with SSL enabled (for Rust worker)?
tokio-postgres, as follows:
```
let conn_str = env.secret("DB_CONN_STR");
let config = tokio_postgres::Config::from_str(conn_str)?;...Looking for feedback on a WAF-false-positive workaround with a Worker
- Fields like
html_body, image, compose_cc often trigger false-positives.- We do want WAF Managed Rules on the rest of the form (To/From/Subject/etc). ...
Node.JS Compatibility Error...

responseStreamDisconnected errors when making 6+ sub requests in worker
ctx.waitUntil() API to make sub requests to send metrics/logs to DataDog, and when there are 6 or more requests, the request/response that is being returned is truncated. When looking at real-time worker logs, the outcome field is set to "outcome": "responseStreamDisconnected", . There are no other errors that are present.
The format we are using to send metrics is ctx.waitUntil(async function() { return await fetch(...)});. The individual requests all function correctly, and I can reproduce this error by enabling any one of them, but if they are all enabled together, an error occured.
We have the following wrangler.toml config:...Durable Object console logs on the dashboard
Deployment on Workers build goes fine, but waits until it timeouts

Requests from Cloudflare Workers to external API result to 520
I can't add my domain

Cloudflare node version change
I have tried to set the NODE_VERSION 20.9.0 in the env form, still it is responding...

CF workers w/ hono-openapi deploy randomly failing with error code 10002
cacheEverything: true vs Cf-Cache-Status: DYNAMIC
override_existing_dns_record
already has externally managed DNS records (A, CNAME, etc). Either delete them, try a different hostname, or use the option 'override_existing_dns_record' to override.i tried to find any information regarding override_existing_dns_record but didn't find any documentation regarding that https://developers.cloudflare.com/search/?query=override_existing_dns_record...
How to redefine types generated by `wrangler types`
wrangler dev generates
```ts
declare namespace Cloudflare {
interface Env {...