Flag global NPM

// Installing a package globally allows you to use the code in the package as a set of tools on your local computer.
// To download and install packages globally, on the command line, run the following command:

$ npm install -g <package_name>
Chukwujiobi Canon