@zkochan/pnpm-bundled
v1.16.10
Published
Fast, disk space efficient package manager
Downloads
1,390
Maintainers
Readme
pnpm
Fast, disk space efficient package manager
Features:
- Fast. Faster than npm and Yarn.
- Efficient. One version of a package is saved only ever once on a disk.
- Deterministic. Has a lockfile called
shrinkwrap.yaml
. - Strict. A package can access only dependecies that are specified in its
package.json
. - Works everywhere. Works on Windows, Linux and OS X.
Like this project? Let people know with a tweet.
Table of Contents
- Background
- Install
- Usage
- Benchmark
- Limitations
- Frequently Asked Questions
- Support
- Awesome list
- Recipes
- Advanced
- Contributing
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: Why should we use pnpm?
Install
Install it via npm.
npm install -g pnpm
Do you wanna use pnpm on CI servers? See: Continuous Integration.
Usage
pnpm install lodash
Use pnpm
in place of npm
. It overrides install
, update
, uninstall
, link
, prune
, list
and install-test
.
Also, it has some custom commands, like dislink
for unlinking a package (like yarn unlink
but pnpm reinstalls
the dependency after removing the external link). The rest of the commands pass through to npm
.
For using the programmatic API, use pnpm's engine: supi.
Configuring
pnpm uses npm's programmatic API to read configs. Hence, you should set configs for pnpm the same way you would for npm.
Furthermore, pnpm uses the same configs that npm uses for doing installations. If you have a private registry and npm is configured to work with it, pnpm should be able to authorize requests as well, with no additional configuration.
However, pnpm has some unique configs as well:
store
- Default: ~/.pnpm-store
- Type: path
The location where all the packages are saved on the disk.
The store should be always on the same disk on which installation is happening. So there will be one store per disk.
If there is a home directory on the current disk, then the store is created in <home dir>/.pnpm-store
. If there is no
homedir on the disk, then the store is created in the root. For example, if installation is happening on disk D
then the store will be created in D:\.pnpm-store
.
It is possible to set a store from a different disk but in that case pnpm will copy, not link, packages from the store. Hard links are possible only inside a filesystem.
offline
- Default: false
- Type: Boolean
If true, pnpm will use only packages already available in the store. If a package won't be found locally, the installation will fail.
network-concurrency
- Default: 16
- Type: Number
Controls the maximum number of HTTP requests that can be done simultaneously.
child-concurrency
- Default: 5
- Type: Number
Controls the number of child processes run parallelly to build node modules.
lock
- Default: true
- Type: Boolean
Dangerous! If false, the store is not locked. It means that several installations using the same store can run simultaneously.
Can be passed in via a CLI option. --no-lock
to set it to false. E.g.: pnpm install --no-lock
.
If you experience issues similar to the ones described in #594, use this option to disable locking. In the meanwhile, we'll try to find a solution that will make locking work for everyone.
independent-leaves
- Default: false
- Type: Boolean
If true, symlinks leaf dependencies directly from the global store. Leaf dependencies are
packages that have no dependencies of their own. Setting this config to true
might break some packages
that rely on location but gives an average of 8% installation speed improvement.
verify-store-integrity
- Default: true
- Type: Boolean
If false, doesn't check whether packages in the store were mutated.
Hooks
pnpm allows to step directly into the installation process via special functions called hooks.
Hooks can be declared in a file called pnpmfile.js
. pnpmfile.js
should live in the root of the project.
An example of a pnpmfile.js
that changes the dependencies field of a dependency:
module.exports = {
hooks: {
readPackage
}
}
// This hook will override the manifest of foo@1 after downloading it from the registry
// foo@1 will always be installed with the second version of bar
function readPackage (pkg) {
if (pkg.name === 'foo' && pkg.version.startsWith('1.')) {
pkg.dependencies = {
bar: '^2.0.0'
}
}
return pkg
}
Benchmark
pnpm is faster than npm and Yarn. See this benchmark which compares the three package managers on different types of applications.
Here are the benchmarks on a React app:
Limitations
npm-shrinkwrap.json
andpackage-lock.json
are ignored. Unlike pnpm, npm can install the samename@version
multiple times and with different sets of dependencies. npm's shrinkwrap file is designed to reflect thenode_modules
layout created by npm. pnpm cannot create a similar layout, so it cannot respect npm's lockfile format.- You can't publish npm modules with
bundleDependencies
managed by pnpm. - Binstubs (files in
node_modules/.bin
) are always shell files not symlinks to JS files. The shell files are created to help pluggable CLI apps in finding their plugins in the unusualnode_modules
structure. This is very rarely an issue and if you expect the file to be a js file, just reference the original file instead, as described in #736. - Node.js doesn't work with the --preserve-symlinks flag when executed in a project that uses pnpm.
Got an idea for workarounds for these issues? Share them.
Other Node.js package managers
npm
. The oldest and most widely used. See pnpm vs npm.ied
. Built on a very similar premise as pnpm. pnpm takes huge inspiration from it.Yarn
. The first Node.js package manager that invented lockfiles and offline installations.
Frequently Asked Questions
Why does my node_modules
folder use disk space if packages are stored in a global store?
pnpm creates hard links from the global store to project's node_modules
folders.
Hard links point to the same place on the disk where the original files are.
So, for example, if you have foo
in your project as a dependency and it occupies 1MB of space,
then it will look like it occupies 1MB of space in the project's node_modules
folder and
the same amount of space in the global store. However, that 1MB is the same space on the disk
addressed from two different locations. So in total foo
occupies 1MB,
not 2MB.
For more on this subject:
- Why do hard links seem to take the same space as the originals?
- A thread from the pnpm chat room
- An issue in the pnpm repo
Does it work on Windows? It is harder to create symlinks on Windows
Using symlinks on Windows is problematic indeed. That is why pnpm uses junctions instead of symlinks on Windows OS.
Does it work on Windows? Nested node_modules
approach is basically incompatible with Windows
Early versions of npm had issues because of nesting all node_modules
(see Node's nested node_modules approach is basically incompatible with Windows). However, pnpm does not create deep folders, it stores all packages flatly and uses symlinks to create the dependency tree structure.
What about circular symlinks?
Although pnpm uses symlinks to put dependencies into node_modules
folders, circular symlinks are avoided because parent packages are placed into the same node_modules
folder in which their dependencies are. So foo
's dependencies are not in foo/node_modules
but foo
is in node_modules/foo
, together with its own dependencies.
Why have hard links at all? Why not symlink directly to the global store?
One package can have different sets of dependencies on one machine.
In project A [email protected]
can have dependency resolved to [email protected]
but in project B the same dependency of foo
might
resolve to [email protected]
. So pnpm hard links [email protected]
to every project where it is used, in order to create different sets
of dependencies for it.
Direct symlinking to the global store would work with Node's --preserve-symlinks
flag. But --preserve-symlinks
comes
with a bunch of different issues, so we decided to stick with hard links.
For more details about why this decision was made, see: https://github.com/nodejs/node-eps/issues/46.