0.2.0 • Published 5 years ago

micro-check-dependencies v0.2.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

micro-check-dependencies

Instantly check if node_modules match package.json versions. Returns list of pkgs that don't.

Inspired by check-dependencies, which itself has too many dependencies.

Usage

npm install micro-check-dependencies

const {checkDeps, installDeps} = require('micro-check-dependencies');

(async () => {
  // rootPath must have package.json and node_modules
  const deps = await checkDeps(rootPath);
  console.log(deps.length > 0 ? 'Doing npm install' : 'All clear!');
  if (deps.length) await installDeps(rootPath);
})();

License

MIT License (c) 2019, Paul Miller (https://paulmillr.com)