Programing

npm -i 플래그는 무엇을 의미합니까?

lottogame 2020. 10. 20. 07:12
반응형

npm -i 플래그는 무엇을 의미합니까?


npm에서 "i"플래그는 무엇을합니까?

나는 다음과 같이 사용되는 것을 보았다.

npm i backbone.marionette

npm 문서를 살펴보고 Google에서 상당량 검색했습니다. 플래그 또는 명령인지 아니면 npm이 아닌지 잘 모르겠습니다.


i 플래그는 설치용입니다. 문서에서 :

npm install
npm install <pkg>
npm install <pkg>@<tag>
npm install <pkg>@<version>
npm install <pkg>@<version range>
npm install <folder>
npm install <tarball file>
npm install <tarball url>
npm install <git:// url>
npm install <github username>/<github project>

Can specify one or more: npm install ./foo.tgz bar@stable /some/folder
If no argument is supplied and ./npm-shrinkwrap.json is 
present, installs dependencies specified in the shrinkwrap.
Otherwise, installs dependencies from ./package.json.

자세한 내용은 여기에서 공식 문서를 참조하십시오 .


나는이 별칭 NPM 설치 에 언급 https://docs.npmjs.com/cli/install을 .

모든 npm-install 플래그와 함께 사용할 수 있습니다. 예를 들어 아래는 npm i 를 사용하여 angular-js amd 라이브 서버를 설치합니다.

npm i angular2@2.0.0-alpha.45 --save --save-exact
npm i live-server --save-dev

참고 URL : https://stackoverflow.com/questions/28351292/what-does-the-npm-i-flag-mean

반응형