1. 程式人生 > >npm常用命令

npm常用命令

全局環境 cache 寫入 -m 指定 .json 其中 body 依賴

npm install xxx 安裝模塊

npm install xxx -g 將模塊安裝到全局環境中 參考http://goddyzhao.tumblr.com/post/9835631010/no-direct-command-for-local-installed-command-line-modul

npm ls 查看安裝的模塊及依賴

npm ls -g 查看全局安裝的模塊及依賴

npm uninstall xxx (-g) 卸載模塊

npm cache clean 清理緩存

npm install xxx --save-dev等,其中參數--save-dev的含義是代表把你的安裝包信息寫入package.json文件的devDependencies字段中,包安裝在指定項目的node_modules文件夾下。

npm常用命令