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

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

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
```