mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
* Add install bench * Update scripts and readme * remove lockfiles * Format bench * Add dev instructions
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.