Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/winstxnhdw/node-boilerplate

A no-compromise Node.js boilerplate for projects on the cutting edge.
https://github.com/winstxnhdw/node-boilerplate

aws-lambda boilerplate bun esbuild esnext nodejs nodenext typescript

Last synced: about 1 month ago
JSON representation

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

Awesome Lists containing this project

README

        

# node-boilerplate

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

## Commands

### Setup

Install all dependencies.

```bash
bun install
```

Run your application.

```bash
bun dev
```

### Build

Minify and bundle the Node application with [esbuild](https://esbuild.github.io/).

```bash
bun run build
```

Human-readable bundle of your Node application. For debugging purposes.

```bash
bun run build -t
```

### Test

Run your tests with hot reloading.

```bash
bun run test
```

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

```bash
bun test
```