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.
- Host: GitHub
- URL: https://github.com/jsonfm/backend-microservices-node
- Owner: jsonfm
- Created: 2022-11-17T14:44:09.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-18T15:55:44.000Z (over 3 years ago)
- Last Synced: 2025-08-17T13:26:36.590Z (10 months ago)
- Topics: express, microservices, node, redis, swagger-ui
- Language: JavaScript
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```