npm
1、安装npm
前往nodejs官网下载安装node
验证是否安装成功node
node -v
node安装npm也会安装
npm -v
2、使用npm
1. 初始化项目
在一个项目文件夹中运行:
npm init
根据提示输入项目信息(如项目名称、版本号等)。
如果你希望快速初始化并跳过提示:
npm init -y
npm init --yes
2. 安装依赖包
安装某个包:
npm install 包名
例如,安装 lodash
:
npm install lodash
默认安装到 node_modules
文件夹,并更新 package.json
。
全局安装:
某些工具需要全局安装(如 yarn
或 eslint
):
npm install -g 包名
例如,安装 yarn
:
npm install -g yarn
3. 移除依赖包
移除已安装的包:
npm uninstall 包名
npm r 包名
npm remove
包名
全局删除:
npm remove
-g 包名
例如,移除 lodash
:
npm uninstall lodash
4. 更新依赖包
更新某个包到最新版本:
npm update 包名
5. 查看已安装的包
查看当前项目中的依赖包:
npm list
查看全局安装的包:
npm list -g
6. 安装指定版本的包
如果需要安装某个指定版本:
npm install 包名@版本号
例如,安装 lodash
的 4.17.21
版本:
npm install lodash@4.17.21
cnpm
1、安装cnpm
npm install -g cnpm --registry=https://registry.npmmirror.com/
2、使用
使用方法与npm一样加个c
安装nrm:
cnpm i nrm -g
查看可用镜像:
nrm ls
切换镜像源:
nrm use taobao
查看镜像源是否切换:
cnpm config get registry
npm config list
清除缓存:
cnpm cache clean --force
查看安装包信息:
npm list
npm list -g