Wrangler 2.0 – a new developer experience for Cloudflare Workers
blog.cloudflare.com
Wrangler 2.0 – a new developer experience for Cloudflare Workers
1–8 of 8 posts
Re: Wrangler 2.0 – a new developer experience for Cloudflare Workers
#2What are people using CF Workers for? Any interesting use cases?
Re: Wrangler 2.0 – a new developer experience for Cloudflare Workers
#3Nice feature set though!
Re: Wrangler 2.0 – a new developer experience for Cloudflare Workers
#4I'd be curious to know how language decisions are made for this tool. I notice Wrangler v1 is Rust, and now this has flipped back to JS/TS. Was the motivation largely driven by Miniflare, which is based on Node? Nice feature set though!
Re: Wrangler 2.0 – a new developer experience for Cloudflare Workers
#5I love the idea of Cloudflare workers & really want to play with them in some spare time, but I've not really got any idea what I could actually _do_ with them ... What are people using CF Workers for? Any interesting use cases?
CF provides a very neat way to route requests to subdomains to specific workers and terminates SSL, which was perfect for my use-case.
Re: Wrangler 2.0 – a new developer experience for Cloudflare Workers
#6I'd be curious to know how language decisions are made for this tool. I notice Wrangler v1 is Rust, and now this has flipped back to JS/TS. Was the motivation largely driven by Miniflare, which is based on Node? Nice feature set though!
Hello! I'm on the team that implemented this. I'll be writing a longer post on the design considerations and implementation details, but roughly - rust wasn't a good case for something that was mostly held back by i/o to the edge; further, the actual cpu/mem intensive part was handed off to webpack which was written in javascript. So wrangler v2 flips that design around, using typescript for the outer shell, which ma…
Re: Wrangler 2.0 – a new developer experience for Cloudflare Workers
#7I love the idea of Cloudflare workers & really want to play with them in some spare time, but I've not really got any idea what I could actually _do_ with them ... What are people using CF Workers for? Any interesting use cases?
There are some examples there and also a section of built with Workers. (Random CF employee)