How to easily verify correct npm dependencies installed?

Found this today. Not sure if your still need this.

https://www.npmjs.com/package/check-dependencies

npm install check-dependencies --save-dev

Install this package and save to your package.json.

require('check-dependencies')(config, callback);

config is the following object, which is then passed to the callback.

{
    status: number,      // 0 if successful, 1 otherwise
    depsWereOk: boolean, // true if dependencies were already satisfied
    log: array,          // array of logged messages
    error: array,        // array of logged errors
}

You can use yarn and do yarn check --verify-tree (you can continue using npm for everything else)

Tags:

Node.Js

Npm