Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fchristenson/microservices-example
https://github.com/fchristenson/microservices-example
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/fchristenson/microservices-example
- Owner: fChristenson
- Created: 2018-01-20T15:03:34.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-09-17T09:14:28.000Z (over 4 years ago)
- Last Synced: 2025-01-15T11:44:38.470Z (9 days ago)
- Language: JavaScript
- Size: 2.13 MB
- Stars: 251
- Watchers: 6
- Forks: 141
- 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