node.js - Can I install express without Internet access? -


i have node.js installed in work machine , want experiment express, seems internet access blocked console (i'm using windows btw).

is there way download express package , use command npm install local folder instead of internet?

as docs says, can. need npm install <tarball file>:

install package sitting on filesystem. note: if want link dev directory npm root, can more using npm link.

example:

npm install ./package.tgz


Comments