| Crates.io | nw |
| lib.rs | nw |
| version | 0.3.0 |
| created_at | 2025-01-18 03:05:28.661872+00 |
| updated_at | 2025-01-18 12:47:11.158439+00 |
| description | A tiny CLI that finds and runs the right command runner |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1521323 |
| size | 3,294 |
A tiny CLI that finds the command runner used in the current project and runs it with the passed arguments.
So instead of looking up if a project uses pnpm, Yarn, or npm, you can just run nw test, and it will delegate the command to the correct runner.
Here's the list of supported runners:
| Runner | Command |
|---|---|
| Just | just ARGS |
| Make | make ARGS |
| npm | npm run ARGS |
| pnpm | pnpm run ARGS |
| Yarn | yarn run ARGS |
| cargo | cargo ARGS |
To install nw, you can use cargo:
cargo install nw
See the changelog.