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