Dev Dock

Scan your project folders for npm scripts, including Claude worktrees, and copy run commands instantly. All data stays in your browser.

Local Projects

No projects added yet

Scan a folder to discover npm scripts across your packages

Quick Scripts

Kill Processes

Kill all Node processes

killall node

Kill port 3000

lsof -ti:3000 | xargs kill -9

Kill port 4000

lsof -ti:4000 | xargs kill -9

Kill port 5173

lsof -ti:5173 | xargs kill -9

Kill port 8080

lsof -ti:8080 | xargs kill -9

Cache & Cleanup

Clear npm cache

npm cache clean --force

Nuke node_modules

rm -rf node_modules && npm install

Nuke node_modules (yarn)

rm -rf node_modules && yarn

Clear Next.js cache

rm -rf .next

Full Next.js reset

rm -rf .next node_modules && npm install

Diagnostics

Check port 3000

lsof -i:3000

Node version

node -v && npm -v

Disk usage (node_modules)

du -sh node_modules

List global packages

npm ls -g --depth=0

Outdated packages

npm outdated