pnpm
Fast, disk space efficient package manager
Features:
- Fast. As fast as npm and Yarn.
- Efficient. One version of a package is saved only ever once on a disk.
- Great for monorepos.
- Strict. A package can access only dependencies that are specified in its
package.json
. - Deterministic. Has a lockfile called
pnpm-lock.yaml
. - Works everywhere. Works on Windows, Linux and OS X.
Like this project? Let people know with a tweet.
Table of Contents
Background
pnpm uses hard links and symlinks to save one version of a module only ever once on a disk.
When using npm or Yarn for example, if you have 100 projects using the same version
of lodash, you will have 100 copies of lodash on disk. With pnpm, lodash will be saved in a
single place on the disk and a hard link will put it into the node_modules
where it should
be installed.
As a result, you save gigabytes of space on your disk and you have a lot faster installations!
If you'd like more details about the unique node_modules
structure that pnpm creates and
why it works fine with the Node.js ecosystem, read this small article: Flat node_modules is not the only way.
Install
Using a standalone script:
curl -L https://unpkg.com/@pnpm/self-installer