Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lucasgabrieldeaa/microservices

Microservices's API with gateway built using monorepo's architecture using NodeJS
https://github.com/lucasgabrieldeaa/microservices

Last synced: 9 days ago
JSON representation

Microservices's API with gateway built using monorepo's architecture using NodeJS

Awesome Lists containing this project

README

        

# microservices

## Running the application

```
git clone https://github.com/lucasGabrielDeAA/microservices
cd microservices
yarn

// To run the gateway's layer
cd packages/gateway && yarn dev

// To run the user's layer
cd packages/users && yarn dev
```

## Requests

Go to [localhost:3333](http://localhost:3333/users) - To retrieve informations via gateway's request.

Go to [localhost:3334](http://localhost:3334/users) - To retrieve informations via user's direct request.