Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 months ago
JSON representation
A no-compromise Node.js boilerplate for projects on the cutting edge.
- Host: GitHub
- URL: https://github.com/winstxnhdw/node-boilerplate
- Owner: winstxnhdw
- Created: 2022-10-17T19:13:17.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-15T22:10:16.000Z (2 months ago)
- Last Synced: 2024-10-17T07:24:47.327Z (2 months ago)
- Topics: aws-lambda, boilerplate, bun, esbuild, esnext, nodejs, nodenext, typescript
- Language: TypeScript
- Homepage:
- Size: 438 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```