Benchmarks of JavaScript Package Managers
Last benchmarked at: Oct 5, 2021, 2:45 AM (daily updated).
This benchmark compares the performance of npm, pnpm, and Yarn (both regular and PnP variant).
Here's a quick explanation of how these tests could apply to the real world:
clean install
: How long it takes to run a totally fresh install: no lockfile present, no packages in the cache, nonode_modules
folder.with cache
,with lockfile
,with node_modules
: After the first install is done, the install command is run again.with cache
,with lockfile
: When a repo is fetched by a developer and installation is first run.with cache
: Same as the one above, but the package manager doesn't have a lockfile to work from.with lockfile
: When an installation runs on a CI server.with cache
,with node_modules
: The lockfile is deleted and the install command is run again.with node_modules
,with lockfile
: The package cache is deleted and the install command is run again.with node_modules
: The package cache and the lockfile is deleted and the install command is run again.update
: Updating your dependencies by changing the version in thepackage.json
and running the install command again.
#
Lots of FilesThe app's package.json
here
action | cache | lockfile | node_modules | npm | pnpm | Yarn | Yarn PnP |
---|---|---|---|---|---|---|---|
install | 1m 6.8s | 17.2s | 21.2s | 27.7s | |||
install | ✔ | ✔ | ✔ | 2.2s | 1.3s | 2.7s | n/a |
install | ✔ | ✔ | 13.4s | 4.7s | 8.5s | 1.8s | |
install | ✔ | 18.7s | 7.9s | 15.1s | 7.2s | ||
install | ✔ | 31.4s | 14.8s | 15.4s | 20s | ||
install | ✔ | ✔ | 28.1s | 1.9s | 8s | n/a | |
install | ✔ | ✔ | 2.1s | 1.3s | 9.3s | n/a | |
install | ✔ | 25.4s | 6.9s | 15.9s | n/a | ||
update | n/a | n/a | n/a | 2.1s | 12.5s | 20.5s | 33.1s |