Is there an UI to do the upload or just command line
What javascript lang does worker code support
How do you configure WAF rule on edge
How do you apply WAF rule near origin
How do you defend for Bot traffic or OWASP TOP 10 attacks
How do you defend carding attacks
Is there an easy way to check Core Web Vitals in Cloudflare?
WAF rule sets — how do you manage ACL or make sure there are no conflicts
How do you do image optimization
Can you do image optimization from Worker
How do you avoid source contents not existent in the origin server?
where can you insert the worker and how?
How do you manage the life cycle of a worker
can Cloudflare worker manipulate a request?
looks like Cloudflare worker has to deliver a response
for example in a WL injection attack
OR
or zero day attacks for example, i have no time to fix back end app, just want to be at have a javascript code takes request and clean basically looks at the query on all parameters to remove anything offensive
For other platforms or CIs you can do it yourself pretty easily! If you just install wrangler, set anything you may need (like secrets - wrangler secret) and then publish with wrangler publish!
You can bundle Workers with any bundler out there, I personally recommend esbuild but something like Webpack will work too! Then just publish as usual per npm-publish | npm Docs
There is a “Quick Edit” UI available which works great for small edits or a pretty simple Worker. For a more complex Worker however I would highly recommend using Wrangler
I’m not sure what you mean, could you please explain?
You can add a Worker to any route you’d like. So to cover the whole apex domain you can add it on route example.com/* to cover only /api you can do example.com/api/*. To cover only the test subdomain you can do test.example.com/* and to cover all subdomains you can do *.example.com/*
Yep! If you want to modify the response, return something completely different or just pass it along you can. I’d recommend reading the docs and if you have any questions asking here or on the Discord
Docs: https://developers.cloudflare.com/workers/