Cloudflare Developers

CD

Cloudflare Developers

Welcome to the official Cloudflare Developers server. Here you can ask for help and stay updated with the latest news

Join

Can't successfully change the GitHub repository linked to my worker

The worker is connected to the repo personal-page2, but I want it to use personal-page now instead. I first tried going to the repository access settings in GitHub's Applications, and replaced the old repo with new one. Seems like it's not the right way to go, as the re-deployment just doesn't proceed now + there's this internal issue alert (in the attached screenshot). Is there a way to change the repo of the worker without deleting it? Thanks in advance :)...
No description

Rate limiting pricing

Will the rate limiting api (https://developers.cloudflare.com/workers/runtime-apis/bindings/rate-limit/) be available for Cloudflare Pro plan or is a Business/Enterprise plan required? Is there a rough anticipated pricing model available? e.g. will using the rate limiting api increase my bill above the current $20 monthly bill?...

Deploy to Cloudflare button doesn't work

https://developers.cloudflare.com/workers/tutorials/deploy-button/ When I try clicking on the button shown in this page or any "Deploy to Cloudflare" button, the dashboard shows error dialog....

Are event handlers necessary for RPC?

Are event handlers now necessary? I have workers I don't want to expose to fetch and only want to invoke via RPC. Why cant I do something like: ```typescript import { WorkerEntrypoint } from "cloudflare:workers";...

How do I get access to persisted Durable Objects?

Hi, I'm implemented a worker with durable objects using the following code from TinyBase. This code appears to be fairly standard when creating durable objects from TinyBase. /// Top of Code...

Streaming response disconnect hook

I'm experimenting with a worker that responds with an indefinite ReadableStream - for the sake of this example, let's just say that it sends the current time as a string every second. I'd like to know when the client manually disconnects, and when that happens, write the number of messages I've sent until that point to a data store. Is there any way to achieve this reliably with Workers? I'm primarily interested in Rust, but would also be interested in a TS/JS solution.

Local Integration Testing

I need to test my stripe webhook and also test against my d1 database after the webhook is ran which is not possible via vitest. I cannot use vitest-pool-workers because the endpoint will not be available to my local machine, only the internal testing environment. This is not possible stripe listen --forward-to localhost:PORT/endpoint The first option listed here looks like my best choice:...

How to prevent Worker from running on certain colocations?

We're using Anthropic's API. Some of our users from South Korea are being routed to the Hong Kong Cloudflare colocation, and Anthropic's API doesn't accept requests from China (& Hong Kong). We want to block Workers from routing to Hong Kong (& instead route to, say, the one in Seoul, KR).

upload data to local r2 buckets

hi, i am developing locally with wrangler, and i was wondering if there are any tools to / common paths to interact with locally simulated buckets. i'd like to update them to hold some data, but its not clear how i see on my terminal Your worker has access to the following bindings: - R2 Buckets: - MY_BUCKET: my-bucket-dev [simulated locally]...

Parsing .EML using workers

i have tried using a variety of mail parsers with workers but since workers does not have full nodejs compatibility, i am unable to use buffer or stream etc which is used by popular libs such as mailparser. is there a workaround or a compatible lib which could do it on workers?

Deploying from dashboard disables logs (and resets folder settings)

Hello! I've created and edited a worker entirely in the dashboard. Every time I change a line of code and press Deploy, the logs are disabled. My wrangler.toml, which I also have to re-enable in the folder settings after every deployment: ```name = "myworkername" main = "worker.js" compatibility_date = "2023-08-23" ...

Getting blocked when trying to deploy worker

I came across an interesting issue just now. I tried to deploy my worker with some new code so i clicked on the Deploy button. Then the message "API Request Failed: PUT /api/v4/accounts/ACCOUNT ID/workers/services/forwardreleases/environments/production?include_subdomain_availability=true (403)" came up. So i checked in the Network tab of my Browser to see what's going on and it seems like i am getting blocked by cloudflare? At least i see it when i visualize the html it returns i get this what's shown in the screenshot. Ray ID is:
929a2fba1c461c05
929a2fba1c461c05
I tried:...
No description

Questdb Nodejs Client not working

I get this error when trying to run the questdb client in miniflare. I have posted a minimum reproducible error - https://github.com/apolo-damasco/cf-workers-questdb ```⎔ Starting local server... ✘ [ERROR] Error sending data TypeError [ERR_INVALID_ARG_TYPE]t" argument must be of type number. Received type string ('utf8') ...

Network error with outbound fetch() requests (some domains working, others not)

When using fetch() requests on Cloudflare, we now experience "error code: 525" for the past 4 days on certain worker custom domains, not the workers.dev domain. https://keyauth.win/psdb - error code: 525 https://keyauth-worker.agentreachout.workers.dev/psdb - success (no SSL error) https://prod.keyauth.com/psdb - success (no SSL error)...

Periodically re-importing D1 database and Maintenance mode

I have a read-only REST API serving (semi) static data. Each month the data changes and we basically get a full name database; there is no diff or whatsoever available. So my idea was to drop the existing D1 tables, and run the import script. And in the meantime return a maintenance response....

Error Cannot read properties of undefined (reading 'get')

Hello, I'm new to Cloudflare and Durable Objects. I have written my first test app that attempts to synchronize a TinyBase store into a durable object. I'm receiving two errors for each request: 1) Cannot read properties of undefined (reading 'get')...

My worker serves sitemap.xml but Google can't read it

I don't have a static site on the domain so if cloudflare chooses to not proxy and run the worker then it will fail, but is there a policy about when cloudflare will step back and try to make the client use the static site? I can't be sure that's the problem, so maybe it's something else. Is there a way to see what Google sees?...

Does Cloudflare Workers will handle custom HTTP/S headers?

Hi, I am looking forward to use CW as middleware to create custom headers for a website to secure it in a better way. Website itself has been created using Webflow and there is not a way to add custom HTTP/S headers by the admin panel nor domain registar does not provide any tools to do that. I've learned that CW can do that, so I would like to know how to preprare before I start. Is there an specific knowledge (i know HTML/CSS/JS/TS and tools around like Git quite well). I haven't done that before and I am looking for professional tips to do it properly....

I just created a hello world worker from a template and it times out

I have no idea why. I had other workers running and they stopped working. I assumed it was something about the code, but then I created a completly new, fresh worker with a hello world template provided by cloudflare and that ALSO times out. I've contacted support, but maybe someone with a similar issue might be faster. It probably is some very stupid misconfiguration somehwere but i've tried to fix it with no luck 😢...

Environments best practices

With workers I can have a "default" environment (placing things in the root of the wrangler.jsonc, and n environments such as development. What's better: having the "default" be the production one with the development one being specified as a separate env (requiring me to add -e development when using that), or having the "default" one be the development, with the prod being its own env?
Next