All Projects → voxpelli → Node Installed Check

voxpelli / Node Installed Check

Licence: mit
Checks that all dependencies in your package.json have supported versions installed and complies with your specified node engine version range

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Node Installed Check

Yarpm
CLI tool to run npm scripts with either npm or yarn, depending on how it was started
Stars: ✭ 13 (-80.6%)
Mutual labels:  cli, npm
Catage
Node package and CLI tool to convert code into an image with syntax highlighting
Stars: ✭ 44 (-34.33%)
Mutual labels:  cli, npm
Typac
install npm packages along with corresponding typings
Stars: ✭ 29 (-56.72%)
Mutual labels:  cli, npm
Ntl
Node Task List: Interactive cli to list and run package.json scripts
Stars: ✭ 800 (+1094.03%)
Mutual labels:  cli, npm
Npm Compare
Compare npm packages from your terminal
Stars: ✭ 55 (-17.91%)
Mutual labels:  cli, npm
Install Self Peers
Stars: ✭ 26 (-61.19%)
Mutual labels:  cli, npm
Npm Build Boilerplate
A collection of packages that build a website using npm scripts.
Stars: ✭ 963 (+1337.31%)
Mutual labels:  cli, npm
Npkill
List any node_modules directories in your system, as well as the space they take up. You can then select which ones you want to erase to free up space.
Stars: ✭ 5,325 (+7847.76%)
Mutual labels:  cli, npm
Cli
The command line vault (Windows, macOS, & Linux).
Stars: ✭ 1,044 (+1458.21%)
Mutual labels:  cli, npm
Be Course 17 18
🎓 Backend · 2017-2018 · Curriculum and Syllabus 💾
Stars: ✭ 44 (-34.33%)
Mutual labels:  cli, npm
Np
A better `npm publish`
Stars: ✭ 6,401 (+9453.73%)
Mutual labels:  cli, npm
Page2image
📷 page2image is a npm package for taking screenshots which also provides CLI command
Stars: ✭ 66 (-1.49%)
Mutual labels:  cli, npm
Standard Version
🏆 Automate versioning and CHANGELOG generation, with semver.org and conventionalcommits.org
Stars: ✭ 5,806 (+8565.67%)
Mutual labels:  versioning, cli
Strangelog
Painless file-based changelog management via CLI.
Stars: ✭ 12 (-82.09%)
Mutual labels:  versioning, npm
Nve
Run any command on specific Node.js versions
Stars: ✭ 531 (+692.54%)
Mutual labels:  versioning, cli
Gub
CLI tool for create an npm package from any repos. 🐳
Stars: ✭ 31 (-53.73%)
Mutual labels:  cli, npm
Release It
🚀 Automate versioning and package publishing
Stars: ✭ 4,773 (+7023.88%)
Mutual labels:  cli, npm
Npm Run All
A CLI tool to run multiple npm-scripts in parallel or sequential.
Stars: ✭ 4,496 (+6610.45%)
Mutual labels:  cli, npm
Nls
Missing inspector for npm packages.
Stars: ✭ 44 (-34.33%)
Mutual labels:  cli, npm
Pizza Cli
🍕 Order a pizza in a CLI app (just for fun!)
Stars: ✭ 58 (-13.43%)
Mutual labels:  cli, npm

Installed Check

Build Status dependencies Status Known Vulnerabilities js-semistandard-style

Checks that the installed modules comply fulfill the requirements of package.json.

By default checks both engine and module versions against requirements.

Usage

Command line

npm install -g installed-check

Then run it at the root of your project to validate the installed dependencies:

installed-check

As npm script

npm install --save-dev installed-check
"scripts": {
  "test": "installed-check"
}

Programmatic use

Use installed-check-core

Options

  • --engine-check / -e – if set installed-check will check that the installed modules comply with the engines requirements of the package.json and suggest an alternative requirement if the installed modules don't comply. If set, the default checks will be disabled.
  • --engine-ignore / -i – if set then the specified module names won't be included in the engine check. engineIgnores should an array of module names while the CLI flags should be set once for each module name.
  • --engine-no-dev / -d – if set then dev dependencies won't be included in the engine check.
  • --version-check / -c – if set installed-check will check that the installed modules comply with the version requirements set for it the package.json. If set, the default checks will be disabled.

Additional command line options

  • --help / -h – prints all available flags
  • --strict / -s – treats warnings as errors
  • --verbose / -v – prints warnings and notices
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].