How to Install Node.js Dependencies for Production Environments
NodeJS ships with the awesome node package manager: NPM. NPM allows to install dependencies defined for your project via package.json. When running a node app in production you want it to install as quick as possible. Pushing new code into the app repository will probably start the continuous integration …
Continue Reading