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

```[wrangler:err] Error: No fetch

[wrangler:err] Error: No fetch handler responded and no upstream to proxy to specified.
[wrangler:err] Error: No fetch handler responded and no upstream to proxy to specified.
😭

Hey I wanted to setup billing

Hey I wanted to setup billing notifications when my workers hit a limit - number of requests or CPU time, but the billable usage notifications only allow me to select the old pricing (unbound/bundled) requests and I use the standard pricing. Is there a way to setup notifications for standard?
No description

GitHub - devondragon/workers-users: Clou...

I'm building something like this for a few personal projects. I am in the process of improving the docs and adding docs around setting up outbound email for forgot password flows, etc... but it works for all the things you mentioned above. Note that the password hashing is using salted SHA-256 instead of something like bcrypt as you don't really want long CPU burns on Workers. If this is a concern you can use bcrypt or an external hashing service or whatever. - https://github.com/devondragon/w...

someone answer?

hey everyone i am wondering that once you create/ set up the website on cloudflare is there a possible way for you to like have a html source and you can out html in that source and it will implement to your website? thanks

but its running on ec2 instace now i

but its running on ec2 instace now i wanna make upload fn to be run on serverless and i have no idea whats wrangler

Cache key

when doing fetch, one of the enterprise features is to cache the fetch by a specific cacheKey, although for non-enterprise customers, what is the cache key instead? the URL ? or the request object as a whole?

Cloudflare Worker is waiting for the

Cloudflare Worker is waiting for the whole response before streaming the output to the client, which defeats the entire point of streaming. I don't know what I am doing wrong. ```ts router.post("/v1/streaming", async (request, { OPENAI_API }) => { let { readable, writable } = new TransformStream(); const client = new ChatOpenAI({...

Hey! I would like to get some feedback.

Hey! I would like to get some feedback. I have a new domain example.com, and I want a few workers to serve the content of my sites: - shop.example.com -> Remix app on worker - dashboard.example.com -> Remix app on worker - example.com/auth -> Remix app on worker...

Mailchannels X MailFrom / From / Return-Path

You're more than welcome to ping me, and let me know what you're (eventually) finding out with them. šŸ™‚

Hi, is there any way to request

Hi, is there any way to request verification of email from with a Worker eg API endpoint ?

Yes, you can write it locally, but afaik

Yes, you can write it locally, but afaik it can't actually be tested(unless you pass in the args yourself)

šŸ› BUG: Uncaught exception Ā· Issue #1401...

For some weird reason I get [Error: internal error] with postgresjs on local development. It comes from the net.socket connection, and there is no useful other info in the error unfortunately. Wondering if its related to https://github.com/cloudflare/workerd/issues/1401

Hi, I'm looking into Smart Placement and

Hi, I'm looking into Smart Placement and can't find anything around pricing. Are there more details about the pricing of Smart Placement for workers, both now and in the future?

it's free for unlimited requests as well

it's free for unlimited requests as well

is Hono a good alternative to itty-

is Hono a good alternative to itty-router for a small API endpoint? i won't use the JSX rendering engine.

smart placement with R2

Hey all, question. From the behavior I'm seeing, smart placement does not count requests to R2 as "subrequests", and therefore is not getting past the INSUFFICIENT_SUBREQUESTS placement status. Is this expected behavior?...

It’s out of date, everyone has access to

It’s out of date, everyone has access to them

wrangler dev not exposing port on local network

Hey! With wrangler dev --ip 0.0.0.0 I used to be able to access http://192.168.1.26:8787/ from my phone connected to the same wifi network. I can access it from the computer on which I started wrangler, but not from my phone... (i can access other ports, if I run a simple web server for example) I tried upgrading/downgrading wrangler version, nothing changed. Am I missing something?...

What is the best way to throttle api to

What is the best way to throttle api to another rest api endpoint in a worker? The rest end point has a 60 requests/sec hard stop