
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A blazingly fast interactive npm script runner with fuzzy search.
Tired of typing npm run repeatedly? Can't remember your script names? devrun makes running npm scripts a breeze with:
✨ Interactive fuzzy search - Type to filter scripts instantly
⚡ Lightning fast - No config, zero overhead
📋 Command preview - See what you're about to run
🎯 Smart filtering - Fuzzy matching finds what you mean
🔥 Two commands: devrun or dr (shorter!)
$ npm run
# Scroll through scripts...
# Try to remember the name...
# Type the full command...
$ npm run dev:server:watch
$ dr
? Select a script to run: ›
❯ dev tsc --watch
build tsc
test echo "Running tests..."
lint eslint src/
# Type 'te' to filter:
? Select a script to run: › te
❯ test echo "Running tests..."
# Press Enter:
✔ Selected: test
> echo "Running tests..."
Running tests... ✅
That's it! No memorization, no typing long commands, just fuzzy search and go.
npm install -g devrun
Or use with npx (no installation needed):
npx devrun
In any project with a package.json, just run:
devrun
# or the shorter version
dr
You'll get an interactive list of all available scripts. Start typing to filter, use arrow keys to select, and hit Enter to run!
$ dr
? Select a script to run: ›
❯ build tsc && vite build
dev vite --port 3000
test vitest run
test:watch vitest
lint eslint src/
format prettier --write src/
Type "te" and it instantly filters to test scripts. Press Enter to run it!
# Traditional way 😴
npm run dev
# Wait, what was it called? Let me check...
npm run
# Scroll through the list...
npm run start:dev
# With devrun 😎
dr
# Type 'dev', press Enter. Done!
| Feature | devrun | npm run | |
|---|---|---|---|
| Interactive selection | ✅ | ❌ | |
| Fuzzy search | ✅ | ❌ | |
| Command preview | ✅ | ❌ | |
| Zero config | ✅ | ✅ | |
| Speed | ⚡ Fast | 🐌 Slow |
Found a bug or have a feature request? Open an issue on GitHub!
MIT
Made with ❤️ for developers who hate typing npm run
FAQs
A blazingly fast interactive npm script runner with fuzzy search
We found that devrun demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.