pnpm 比 npm 快了近 2 倍
node_modules 中的所有文件均克隆或硬链接自单一存储位置
pnpm 内置了对单个源码仓库中包含多个软件包的支持
pnpm 创建的 node_modules 默认并非扁平结构,因此代码无法对任意软件包进行访问
安装
Using PowerShell:
iwr https://get.pnpm.io/install.ps1 -useb | iex
On POSIX systems
curl -fsSL https://get.pnpm.io/install.sh | sh -
如果没有安装 curl,可以使用 wget:
wget -qO- https://get.pnpm.io/install.sh | sh -
npm install -g pnpm