Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ribbinpo/node-express-boilerplate
https://github.com/ribbinpo/node-express-boilerplate
express-validator node-express-boilerplate nodemon
Last synced: about 14 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/ribbinpo/node-express-boilerplate
- Owner: ribbinpo
- Created: 2023-05-12T16:22:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-12T15:45:10.000Z (2 months ago)
- Last Synced: 2024-09-13T04:23:11.918Z (2 months ago)
- Topics: express-validator, node-express-boilerplate, nodemon
- Language: TypeScript
- Homepage:
- Size: 435 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Description
This is a boilerplate project for building a REST API using Express and TypeScript. It includes basic setup for request validation using express-validator and testing with jest.
## Installation
```bash
# install the package
npm install
```## Running the app
```bash
# development mode
npm run dev# production mode
npm run build && npm run start
```## Test
```bash
# unit tests
$ npm run test
```