https://github.com/biomathcode/monolith
https://github.com/biomathcode/monolith
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/biomathcode/monolith
- Owner: biomathcode
- License: mit
- Created: 2023-06-28T20:29:46.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-28T20:29:49.000Z (about 2 years ago)
- Last Synced: 2025-02-08T02:44:58.418Z (5 months ago)
- Language: JavaScript
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README

[](https://github.com/prettier/prettier)# Express-REST-API-Template
Simple express boilerplate based off of [express-generator](https://expressjs.com/en/starter/generator.html). Includes [eslint](https://eslint.org) and [prettier](https://prettier.io) for linting/code formatting, [nodemon](https://github.com/remy/nodemon) for automatic server restarting, and [Jest](https://jestjs.io) for testing.
## Getting Started
### Install dependencies
```
npm install
```### Running in development
```
npm run dev
```### Running in production
```
npm start
```Runs on localhost:3000 by default but can be configured using the `PORT` environment variable.
### Running tests
```
npm test# Watch repo
npm run test:watch
```### Linting
```
npm run lint# fix issues
npm run lint:fix
```