How to install a NodeJS module using npm globally
Answer:
By default, node modules installed using simple node install will be installed under the folder ./node_modules. In order to install the modules globally, try
# sudo npm install express -g
The above command install the express module as global module.