查看npm版本
npm --version
升级npm
npm install global npm
npm常用命令
npm init(构建项目)
npm init-y(快速生成项目)
npm install(一次性安装所有依赖包)
npm install 包名(安装指定依赖包)
npm install --save 包名(下载并保存依赖项保存在package.json中的dependencies选项简写:npm i -S 包名)(版本5之后不需要加--save)
npm uninstall 包名(只删除,如果有依赖项依然会保存简写: npm un 包名)
npm uninstall --save 包名(删除的同时也会删除依赖项:npm un -S 包名)
npm安装包文件过慢问题
npm config set registry https://registry.npm.taobao.org(添加配置文件)
查看npm配置信息
npm config list
只要经过上面的命令配置,以后所有的npm install都会默认通过淘宝服务器下载。
网友评论