🔍 A simple cli utility for querying the node_modules
directory
most bugs are caused by the assumptions we didn't realize we were making.
When debugging a problem, I sometimes find myself checking what are the installed versions of the modules within node_modules
directory. Current solutions like running npm list
are not fast enough and prints too much clutter, checking the version in the package.json
takes a bit more effort and doesn't give you more information regarding other occurrences of this module.
qnm aims to get this information fast and tries to filter only the important parts, while supporting both yarn & npm.
- 💬 Tab completions
- ✨ Interactive fuzzy-search
- 🔤 Match all packages with a specific string
⁉️ Explain why a package was installed- 📚 Supports monorepos
npm i --global qnm
qnm [module]
For example, if you want to see the installed versions of lodash
:
qnm lodash
And you'll see something like that:
lodash
├── 4.17.5
├─┬ cli-table2
│ └── 3.10.1
└─┬ karma
└── 3.10.1
Which means you have 3 occurrences of lodash in your node_modules
:
./node_module/lodash
./node_module/cli-table2/node_modules/lodash
./node_module/karma/node_modules/lodash
Use qnm
command without arguments to trigger an fzf
like fuzzy search.
- Start typing to filter the matches from your
node_modules
- Use arrows to move cursor up and down
Enter
key to select the item,CTRL-C
/ESC
to exitTAB
andShift-TAB
to mark multiple items
Add information regarding why this package was installed in the first place, by showing its dependent packages.
Open the module's package.json
file with the default editor.
See full error messages, mostly for debugging.
Disables the most of colors and styling. E.g. version colors.
alias: ls
Returns a list of all modules in node_modules directory.
qnm list
Optional arguments | Description |
---|---|
--deps |
List the versions of direct dependencies and devDependencies. |
Works like grep, and match's any module that includes the supplied string.
For example, i want to see which eslint plugins i have installed:
> qnm match eslint-plug
eslint-plugin-babel
└── 3.3.0
eslint-plugin-lodash
└── 2.6.1
eslint-plugin-mocha
└── 4.12.1
eslint-plugin-react
└── 6.10.3
Opens package "homepage" property in your browser.
Run to install tab completions using tabtab (Setup only once)
Help is always welcome! Please head to the CONTRIBUTING.md file to see how to get started.
The MIT License