赞
踩
NPM是随同NodeJS一起安装的包管理工具,能解决NodeJS代码部署上的很多问题,常见的使用场景有以下几种:
允许用户从NPM服务器下载别人编写的第三方包到本地使用。
允许用户从NPM服务器下载并安装别人编写的命令行程序到本地使用。
允许用户将自己编写的包或命令行程序上传到NPM服务器供别人使用。
npm -v
npm install npm -g
npm install -g <安装包名> --registry=https://registry.npm.taobao.org
安装package.json中所有的包,本次安装从设置的镜像中下载,不改变npm原有配置的仓库镜像
npm install --registry=https://registry.npm.taobao.org
npm config get registry
也可以修改 ~/.npmrc 文件,加入下面内容
- npm config set registry <https://....仓库镜像源地址>
- registry = https://registry.npm.taobao.org
npm install -g cnpm --registry=https://registry.npm.taobao.org
npm install <包名> <-g>
npm config set proxy null
npm -g list
npm uninstall <包名> ; npm uninstall *
npm ls
2.10中卸载某个包后,如果是卸载的/node_modules/目录下的包,可以通过此命令查看卸载的包是否还存在
npm update <包名>
npm install <-g> <包名>@<版本号>
npm adduser
npm login
npm publish
npm cache verify
或者
npm cache clean --force
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。