一、项目常用
1、安装依赖
npm install
2、启动项目
npm run serve / npm run dev
3、打包
npm run build
4、安装某项依赖包(指定版本)
npm install -s element-ui@2.5.1(指定版本)
npm install -s element-ui@latest(最新版本)
附:-s 表示 --save
5、移除依赖包
npm uninstall element-ui
npm remove element-ui
6、查看当前npm 版本
npm -v
7、全局安装(以vite为例)
npm install vite -g
附:-g 表示 --global
二、镜像篇
1、查看当前镜像
npm config get registry
2、npm设置镜像
npm config set registry
附:常用的镜像清单
原始镜像:https://registry.npmjs.org/
淘宝镜像:https://registry.npmjs.taobao.org/
华为云镜像:https://mirrors.huaweicloud.com/repository/npm/
腾讯镜像:https://mirrors.cloud.tencent.com/npm/