pnpm Link to heading
pnpm
is an awesome node package manager, it manages node_modules
dependencies using hard and symbolic links to a global store.
This makes it more disk space efficient than npm
, and keeps node_modules
cleaner for each individual project.
Install Link to heading
curl -fsSL https://get.pnpm.io/install.sh | sh -
# or
wget -qO- https://get.pnpm.io/install.sh | sh -
Install Specific Version Link to heading
curl -fsSL https://get.pnpm.io/install.sh | env PNPM_VERSION=9.13.2 sh -
npx equivalent Link to heading
pnpm dlx