pnpm 用法

前言:pnpm 相较于 yarn、cnpm 是可以解决幻影依赖问题。

1. 安装和卸载

# 安装
npm install -g pnpm

# 卸载
npm rm -g pnpm

2. 用法

# 查看 npm 镜像设置:默认值 https://registry.npmjs.org/
npm config get registry

# 将 npm 设置为淘宝镜像
npm config set registry https://registry.npm.taobao.org
# or
npm config set disturl https://npm.taobao.org/dist

# 卸载淘宝镜像
npm config delete registry
# or
npm config delete disturl

你可能感兴趣的:(前端)