Last Updated: February 25, 2016
·
770
· rowanmanning

Avoid Global NPM Modules

Add ./node_modules/.bin to your path, which allows you to use locally installed command line tools when inside your project folder; so each project can use different versions of the same tool.

Add the following to your .bashrc or .bash_profile:

export PATH=./node_modules/.bin:$PATH