benchmarks-of-javascript-package-managers
benchmarks-of-javascript-package-managers copied to clipboard
Benchmarks of JavaScript Package Managers
Since Yarn 2 has PnP enabled (with a better implementation as Yarn 1), I think it would make more sense to use that. To use Yarn 2, the following command...
Fixes #31 I've also enabled the Yarn 2 benchmark for the parts that were previously n/a by removing the `.pnp.js` where the `node_modules` folder would have been removed otherwise.
According to [the website](https://pnpm.js.org/), one of the major features is `pnpm`'s minimal disk usage. If it is possible, could you add sizes of the folders (with `du -sh` or something)...
Couldn't find any information about this flag. ``` npm install --cache cache ``` Are there any explanation what it does or documentation about it?
Your benchmark doesn't packages which require native compilation. Try to depend on `truffle`, for example. it depends on quite a few native modules. NPM compiles them one by one. Yarn...
It would be nice if the benchmark also tracked how long it took to install (ie. add) modules, after the project has already been fully installed/initialized. This is an important...
This flag could introduce some performance enhancements
In npm v5.7.1 a new command was added - `npm ci`. Npm team claims it is faster (2x-10x) than npm install > The new npm ci command installs from your...