node-boilerplate

A no-compromise Node.js boilerplate for projects on the cutting edge.

Stars
3

node-boilerplate

A no-compromise boilerplate for projects willing to be on the cutting edge of ECMAScript and Node.

Commands

Setup

Install all dependencies.

bun install

Run your application.

bun dev

Build

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

Test

Run your tests with hot reloading.

bun run test

Run your tests without hot reloading. For testing in a CI pipeline.

bun test