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

https://github.com/jsonfm/backend-microservices-node

An express backend with an architecture focus on microservices.
https://github.com/jsonfm/backend-microservices-node

express microservices node redis swagger-ui

Last synced: 2 months ago
JSON representation

An express backend with an architecture focus on microservices.

Awesome Lists containing this project

README

          

## Backend with Node
This project implements an architecture of microservices which includes redis.

### 🔧 Installation
1. First install the project dependencies
```
npm install
```
2. Set the `.env` variables, check `.env.example` for more details:
```
PORT=3000
DB_NAME=SOME_NAME
DB_USER=SOME_USER
```

### 📄 Docs
Docs are available with Swagger UI on `/api/v1/docs/`.

### ⚡️ Development
For execute the project with `nodemon` run the following command:
```
npm run dev
```

### 🚀 Production
```
npm run start
```