Benchmarks of JavaScript Package Managers
Last benchmarked at: May 23, 2026, 12:57 PM (daily 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_modulesfolder.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.jsonand running the install command again.
Lots of Files
The app's package.json here
| action | cache | lockfile | node_modules | npm | pnpm | pnpm 🦀 | Yarn | Yarn PnP |
|---|---|---|---|---|---|---|---|---|
| install | 27.6s | 7.2s | 4.1s | 7.1s | 2.9s | |||
| install | ✔ | ✔ | ✔ | 1s | 373ms | 290ms | 4.5s | n/a |
| install | ✔ | ✔ | 7.1s | 1.8s | 648ms | 5s | 1.1s | |
| install | ✔ | 10.9s | 3.3s | 3s | 6.8s | 2.4s | ||
| install | ✔ | 9.8s | 6.6s | 2.5s | 5.1s | 1.1s | ||
| install | ✔ | ✔ | 1.5s | 4.9s | 2.6s | 6.4s | n/a | |
| install | ✔ | ✔ | 1s | 374ms | 201ms | 4.5s | n/a | |
| install | ✔ | 1.5s | 7.3s | 3.8s | 6.4s | n/a | ||
| update | n/a | n/a | n/a | 6.5s | 2.9s | 2.3s | 5.1s | 2.5s |
pnpm vs pnpm 🦀
pnpm v12 will use a new installation engine for fetching and linking written in Rust. See pacquet.
| action | cache | lockfile | node_modules | pnpm | pnpm 🦀 |
|---|---|---|---|---|---|
| install | 7.2s | 4.1s | |||
| install | ✔ | ✔ | ✔ | 373ms | 290ms |
| install | ✔ | ✔ | 1.8s | 648ms | |
| install | ✔ | 3.3s | 3s | ||
| install | ✔ | 6.6s | 2.5s | ||
| install | ✔ | ✔ | 4.9s | 2.6s | |
| install | ✔ | ✔ | 374ms | 201ms | |
| install | ✔ | 7.3s | 3.8s | ||
| update | n/a | n/a | n/a | 2.9s | 2.3s |