A no-compromise boilerplate for projects willing to be on the cutting edge of ECMAScript and Node.
Install all dependencies.
bun install
Run your application.
bun dev
Minify and bundle the Node application with esbuild.
bun run build
Human-readable bundle of your Node application. For debugging purposes.
bun run build -t
Run your tests with hot reloading.
bun run test
Run your tests without hot reloading. For testing in a CI pipeline.
bun test