1.查看已安装的模块
- 全局
npm list -g --depth 0
- 当前项目
npm list
2.更新包
npm update -g xxx
3.删除包
npm uninstall -g xxx
4.安装
- 当前项目
npm install xxx
- 全局
npm install -g xxx
5.查看npm配置
npm config list -l
2023-10-30 08:15:22
1.查看已安装的模块
npm list -g --depth 0
npm list
2.更新包
npm update -g xxx
3.删除包
npm uninstall -g xxx
4.安装
npm install xxx
npm install -g xxx
5.查看npm配置
npm config list -l