dumb question about Wrangler

Hey, I just wanted to know if I had to install Wrangler in the Worker environment through a command interface of some sort or if I had to install it on my local machine. Sorry about the dumb question.
2 Replies
Chaika
Chaika•4mo ago
local machine. There is no workers environment. Unlike other serverless platforms, Workers run as V8 Isolates, like a chrome tab (V8 being a Javascript engine, same as chrome uses). You don't get a container, you can't launch procesesses, no file system, etc, all you can do is run code, use memory, fetch, a browser-like environment. https://developers.cloudflare.com/workers/reference/how-workers-works/ Not a dumb question 🙂
Cloudflare Docs
How Workers works · Cloudflare Workers docs
The difference between the Workers runtime versus traditional browsers and Node.js.
spyguy
spyguy•4mo ago
thanks so much! 😄