https://github.com/luizcalaca/microservices-nodejs-docker-gateway-api
[Dockerized] Microservices architecture with API Gateway
https://github.com/luizcalaca/microservices-nodejs-docker-gateway-api
api-gateway api-rest conventional-commits docker docker-compose express express-http-proxy git microservice microservices nodejs proxy
Last synced: 3 months ago
JSON representation
[Dockerized] Microservices architecture with API Gateway
- Host: GitHub
- URL: https://github.com/luizcalaca/microservices-nodejs-docker-gateway-api
- Owner: luizcalaca
- Created: 2022-05-26T21:01:34.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-27T18:09:49.000Z (over 3 years ago)
- Last Synced: 2025-04-12T16:15:17.086Z (6 months ago)
- Topics: api-gateway, api-rest, conventional-commits, docker, docker-compose, express, express-http-proxy, git, microservice, microservices, nodejs, proxy
- Language: JavaScript
- Homepage:
- Size: 17.6 KB
- Stars: 52
- Watchers: 3
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How to run the microservices throgh API Gateway
## products microservice with MySQL
```
cd /products
docker-compose up
```## orders microservice with MongoDB
```
cd /orders
docker-compose up
```## API Gateway Pattern Architecture
```
cd /api-gateway
npm start
```## Using API Gateway on browser
```
http://localhost:3007/orders
http://localhost:3007/products
```