Post

git에 저장된 repository를 module로 사용하기

git에 저장된 repository를 module로 사용하기

npm install

1
2
3
npm install git+https://github.com/visionmedia/express.git
// 혹은
npm install git+ssh://git@github.com/visionmedia/express.git


package.json에 모듈이 추가된 것을 확인할 수 있다.


How to install an npm package from GitHub directly?

This post is licensed under CC BY 4.0 by the author.