npm常用命令:init、install、uninstall、help
生活随笔
收集整理的這篇文章主要介紹了
npm常用命令:init、install、uninstall、help
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
npm官網
也可以自己發包到該網站,供別人下載。
https://www.npmjs.com
npm升級
npm常用命令
https://www.cnblogs.com/PeunZhang/p/5553574.html
npm init
生成package.json包管理文件。
npm init -ynpm install
npm install
一次性將package.json文件中dependencies中的依賴項全部安裝。
npm install #簡寫 npm inpm install 包名
只是下載包,并不將包保存到package.json文件中。
npm install 包名 #簡寫 npm i 包名npm install --save 包名
下載且保存依賴到package.json文件中的depdencies中。
npm install --save 包名 #簡寫 npm i -S 包名npm uninstall 包名
移除包。
npm uninstall 包名
只是刪除包,如果有依賴項會依然保存。
npm uninstall 包名 #簡寫 npm un 包名npm uninstall --save 包名
刪除的同時也會將依賴項清除。
npm uninstall --save 包名 #簡寫 npm un -S 包名npm help
npm --help
npm 命令名 --help
與50位技術專家面對面20年技術見證,附贈技術全景圖總結
以上是生活随笔為你收集整理的npm常用命令:init、install、uninstall、help的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: springboot集成kafka及ka
- 下一篇: 使用cnpm代替npm优化下载速度