global-exec-list
v1.0.0
Published
A globally installed NodeJS module that will find and list all other globally installed modules along with their executable name.
Maintainers
Readme
Global Executables Lister
This module is a very simple, globally-installed module that will find and list all modules installed at the global level along with the name of the shell executable and the version.
Installation
npm install -g global-exec-list
Usage
lister
Output
Results are returned in the console with 1 entry per line in the format: moduleName@version - (shellCommand)
Example:
[email protected] - (lister)
[email protected] - (nodemon)
[email protected] - (npm)
[email protected] - (phonegap)
[email protected] - (swagger)
[email protected] - (swagger-project)Future Outlook
This module was made mainly because I have a poor memory and didn't like looking at the much longer output of npm ls --json --long -g --depth=0 just to remember what global modules I've installed and the name of the associated shell command.
Potentially up-next on enhancements include:
- Improve overall output formatting
- Provide flag to get the same output, but for local modules (why? why not!)
I welcome suggestions, updates, or PRs.
