nrm查看及使用镜像源
全局安装:npm i -g nrm
查看镜像源:nrm ls ,一般会有taobao、yarn、cnpm、npm
使用某个镜像源:nrm use taobao即可
npm修改源
npm install时,npm官网速度慢,解决办法是修改npm的数据源,使用淘宝镜像
npm config set registry https://registry.npm.taobao.org
修改后可以通过这个进行测试
npm config get registry
下次安装直接npm i + 包名,就可以了
- 查看配置列表
npm config list
npm命令
- npm install <packageName> --force 强制重新安装
- npm update <packageName> 更新模块版本
- npm config get cache 安装包的缓存目录
- npm install --cache-min Infinity <package-name> 从缓存目录安装模块。
yarn 配置淘宝镜像
- 查看当前镜像源
yarn config get registry - 设置淘宝镜像
yarn config set registry https://registry.npm.taobao.org
yarn与npm命令对照
npx
- npx可以直接在命令行中调用模块,一般项目调用模块在script字段中
- npx可以调用全局模块
- 强制使用本地模块,--no-install
- 使用远程模块,--ignore-existing