npm官网:www.npmjs.com
npm官方包资源服务器:https://www.registry.npmjs.org
文件
package.json :包管理配置文件
记录项目中安装了哪些包。
dependencies节点:
记录开发和上线后都要用到的包。
使用 npm install 命令安装包时,npm包管理工具会自动把包记录到该文件的中。
devDependencies节点:
记录开发阶段会用到但上线不用到的包。
指令:
npm -v //查看npm版本
npm intit -y //快速在执行命令时所处的目录中创建 package.json文件。只能在英文目录下运行,不能有中文、空格。
npm install //读取package.json文件dependencies节点中所有的包一次性安装
npm install 包的完整名称 //安装包,简写 npm i。
npm install 包的完整名称@2.2.2 //安装指定版本包
npm install 包的完整名称 --save-dev //加--save-dev,安装包,并记录到devDependencies节点。简写 npm install 包的完整名称 -D
npm uninstall 包的完整名称 //卸载包
解决下包慢的问题
//查看当前下包镜像源
npm config get registry
//将镜像源切换为淘宝镜像
npm config set registry https://registry.npmmirror.com
//查看当前下包镜像源
npm config get registry