--local for other commands, to prime the local dbs - and we've heard plans to add IDE extensions for a visual explorer of eg. miniflare's R2 buckets. Right now, neigher of these exist to my knowledge.
workerd (what's used for wrangler dev now in v3) is VERY limited. I know the team want to expand this, but I would recommend sticking with wrangler v2 for now if you want to run it on older operating systems - it should work fine.wranglerVersion: 3 to use 3.x today

nodemon --watch src --exec npm run devwrangler init --from-dash <WORKER NAME> to pull it down locally and develop with Wrangler. https://developers.cloudflare.com/workers/wrangler/commands/#initTherefore, it is recommended that you continue using the CLI.{
"watch": ["lib.rs", "src/"],
"ext": "rs"
}{
"name": "worker1",
"version": "0.0.0",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev"
},
"dependencies": {
"wrangler": "^3.0.1"
}
}