I would like to list some modules that I want to install globally - they are not project related (things like bower
, npm-check-updates
, ... which I use all the time). Is it possible to manage this with a "global" package.json
, or do I need to maintain a separate shell script to perform this installation? Currently I am doing:
# global-npm-pacakges.sh
npm install -g npm-check-updates@1.5.1
npm install -g bower@1.4.1
Any other way of doing this?