Files
bun.sh/bench/install/README.md
Colin McDonnell 76adc5be8a Add npm benchmark (#2555)
* Add install bench

* Update scripts and readme

* remove lockfiles

* Format bench

* Add dev instructions
2023-04-04 16:26:40 -07:00

373 B

install benchmark

Requires hyperfine

$ hyperfine --prepare 'rm -rf node_modules' --warmup 1 --runs 3 'bun install' 'pnpm install' 'yarn' 'npm install'

To check that the app is working as expected:

$ bun run dev
$ npm run dev
$ yarn dev
$ pnpm dev

Then visit http://localhost:3000.