- 1、npm config get registry 查看当前镜像地址
- https://registry.cnpmjs.org/ 修改镜像地址">2、npm config set registry https://registry.cnpmjs.org/ 修改镜像地址
- 3、创建.npmrc;打开cmd命令行,在需要创建的文件目录下输入:type null>.npmrc
- 4、npm init 或 npm init -y
- 5、安装的修饰符
- 6、npm install 包1 包2 包3…
- https://registry.npm.taobao.org">7、淘宝cnpm安装: npm install -g cnpm —registry=https://registry.npm.taobao.org
- 8、cnpm使用:cnpm install swiper —save (–save不要省略)
- 9、npm uninstall 包名 或 cnpm uninstall 包名 或 npm rm 包名
- 10、npm安装包版本查看:npm view 包名 versions
- 11、npm安装包查看最新版:npm view 包名 version
- 12、安装指定版本:npm install 包名@版本号
1、npm config get registry 查看当前镜像地址
2、npm config set registry https://registry.cnpmjs.org/ 修改镜像地址
3、创建.npmrc;打开cmd命令行,在需要创建的文件目录下输入:type null>.npmrc
4、npm init 或 npm init -y
注意:npm init的时候创建的name一定不要和先有的包名字冲突,否则报错;安装npm包的前提条件是项目目录下存在package.json
5、安装的修饰符
–save(可省略) 简写 -S 表示安装的内容为项目依赖(也就说开发和上线都需要)
–save-dev 简写 -D 表示安装的内容为开发依赖(也就说开发的时候需要,上线不需要)
-g 表示全局安装,一般用来安装工具,不用来安装当前项目的依赖包
install 简写 i 用来安装包
6、npm install 包1 包2 包3…
示例:
npm install jquery --save
npm i less less-loader -D
7、淘宝cnpm安装: npm install -g cnpm —registry=https://registry.npm.taobao.org
8、cnpm使用:cnpm install swiper —save (–save不要省略)
9、npm uninstall 包名 或 cnpm uninstall 包名 或 npm rm 包名
示例:
npm uninstall jquery
cnpm uninstall swiper
npm rm bootstrap
10、npm安装包版本查看:npm view 包名 versions
示例:
npm view jquery versions
11、npm安装包查看最新版:npm view 包名 version
示例:
npm view jquery version
12、安装指定版本:npm install 包名@版本号
示例:
npm install jquery@1.12.4