The NodeJS cartridge currently runs _npm install -d_ when building a NodeJS app. This pulls in _devDependencies_ as well as the production dependencies which is time consuming and wasteful. The call should be _npm install -d --production_
The NodeJS cartridge currently runs npm install -d when building a NodeJS app.
This pulls in devDependencies as well as the production dependencies which is time consuming and wasteful.
The call should be npm install -d --production