Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.33 KB

README.md

File metadata and controls

31 lines (21 loc) · 1.33 KB

load-balancer

Load balancer implementation in Node.js

Implementation of round‑robin load balancing.

alt text

Project description

  • One api-gateway microservice(contains load balancer implementation)
  • Three instances of users microservices
  • All instances of users microservice share same MongoDB instance.

You can access application on http://localhost:8080. To test all routes, there is a Postman collection. To start application, navigate to root directory and run docker-compose up --build.

Method URL description access
POST /users create user all
GET /users get all users all
GET /users/{id} get user by id all
PATCH /users/{id} update user all
DELETE /users/{id} delete user all