Benchmarks of JavaScript Package Managers
Last benchmarked at: Jan 8, 2023, 3:15 AM (weekly updated).
This benchmark compares the performance of npm, pnpm, Yarn Classic, and Yarn PnP (check Yarn's benchmarks for any other Yarn modes that are not included here).
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 Files
The app's package.json
here
action | cache | lockfile | node_modules | npm | pnpm | Yarn | Yarn PnP |
---|---|---|---|---|---|---|---|
install | 33.8s | 20.1s | 20.3s | 40.7s | |||
install | ✔ | ✔ | ✔ | 2.1s | 1.4s | 2.6s | n/a |
install | ✔ | ✔ | 9.1s | 5.3s | 7.8s | 1.7s | |
install | ✔ | 13.5s | 9.3s | 14.1s | 7.7s | ||
install | ✔ | 15s | 17.2s | 14.2s | 33.4s | ||
install | ✔ | ✔ | 2.5s | 3s | 8.8s | n/a | |
install | ✔ | ✔ | 2s | 1.4s | 8.7s | n/a | |
install | ✔ | 2.5s | 11.2s | 14.7s | n/a | ||
update | n/a | n/a | n/a | 8.9s | 12s | 6.9s | 14.9s |