Skip to content

winstxnhdw/node-boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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