Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lucasgabrieldeaa/microservices
- Owner: lucasGabrielDeAA
- Created: 2020-07-31T18:06:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-13T10:43:26.000Z (almost 2 years ago)
- Last Synced: 2023-08-05T02:41:10.547Z (over 1 year ago)
- Language: JavaScript
- Size: 151 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
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.