Symlink a npm package that live outside of node_modules https://docs.npmjs.com/cli/linkarrow-up-right
Group package together with npm scope https://docs.npmjs.com/misc/scopearrow-up-right
https://medium.com/dailyjs/how-to-use-npm-link-7375b6219557arrow-up-right symlinking is a 2 step process
https://docs.npmjs.com/cli-commands/pack.htmlarrow-up-right
install packages directly from GitHub:
npm install express can be alternatively done like this: npm install git+https://github.com/visionmedia/express.git
npm install express
npm install git+https://github.com/visionmedia/express.git
npm view
Last updated 4 years ago