https://github.com/fchristenson/microservices-example
https://github.com/fchristenson/microservices-example
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fchristenson/microservices-example
- Owner: fChristenson
- Created: 2018-01-20T15:03:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-09-17T09:14:28.000Z (almost 5 years ago)
- Last Synced: 2025-04-02T07:49:52.916Z (3 months ago)
- Language: JavaScript
- Size: 2.13 MB
- Stars: 249
- Watchers: 6
- Forks: 139
- Open Issues: 4
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Building Microservices with Node, Docker and Nginx
1. What is a Microservice
2. How do we make one?
3. How do we make them work together?## Notes (Opinionated)
DO NOT do this for a real project of this size, this is to learn.
A Microservice architecture is for BIG projects with a lot of people.People will tell you that you can do it at small scale and it is true
but you can also remove ants with a nuclear bomb.Docker containers can be used without using Microservices, they are not the
same thing!This is the most common way I see people build container based projects
but my personal favourite is using a queue for all container to container
communication.## Rule of thumb thoughts (Opinionated)
Docker containers = good for almost all project sizes
Microservices = good for big companies with a lot of code and people
Sweetspot = Monolith app and databases in containers