Microservices with Node JS and React
- Descripción
- Currículum
- Reseñas
Event-Based Architecture? Covered! Server side rendering with React? Yep. Scalable, production-ready code? Its here!
Microservices are the number one solution for building and scaling out apps that are intended to grow. Just one little issue: there are few resources online that delve into the most complex and nasty issues around them! I built this course to fix that. This course tackles every major issues around microservices head on. From challenges with data replication to confusing unordered event streams, every major challenge of building microservices is covered.
Beyond focusing on the basics of microservices, this course is a perfect introduction to the world of full-stack development. You will work all the way from the frontend, assembling a React app using Hooks, to the backend, including database design and deployment strategies. Every step along the way is covered in tremendous detail, with ample diagrams to ensure every step is crystal clear.
Many other resources show only the easiest, simplest apps written with microservices. This course does the opposite: we focus on the most challenging aspects of microservices, challenges that you will likely encounter every single day. You will see these difficulties first hand, then solve them with easy-to-understand strategies.
——————-
How This Course Works
This course doesn’t focus on using an off-the-shelf microservices framework. Many exist, but they hide the inner workings and challenges of microservices away from you. Instead, we will be using a minimal number of libraries, and write as much custom code as possible. This will expose you to challenging problems and clever solutions when handling subjects like async events!
What Technology You’ll Use
Because we are building a full stack application, we will use a variety of technologies. On the frontend, we’ll use React and Next JS to present content to users. Each service is created using Node and Express. Data for each service is held in either a Mongo database or Redis. The entire app is deployed and runs in Docker containers executed in a Kubernetes cluster. Finally, almost all of the code in this course is written with Typescript.
This is a scary list of technologies! Not familiar with some of these? No problem! The course is built assuming that you only know the basics of Javascript and Express. No other knowledge is needed – you will learn everything you need to know.
What You’ll Be Able to Do
By the time you complete this course, you will be able to:
-
Architect a multi-service application
-
Determine whether your app is a good fit for a microservices approach
-
Understand and solve the challenges in async, event-based communication between services
-
Use Docker and Kubernetes to deploy a multi-service app to any cloud provider
-
Organize and enhance the reusability of code in large projects
What You’ll Learn
An absolute incredible number of topics are covered in this course. Here is a partial list of what you’ll do:
-
Practice patterns to create scalable microservices for a variety of app domains
-
Build a Server-Side-Rendered React app using Hooks and Next JS
-
Write a custom implementation of an event bus
-
Optionally, run a development environment through a cloud provider
-
Guarantee consistently structured responses from your different API’s
-
See best practices in communication between different services
-
Configure and scale your services using Kubernetes Deployments
-
Document and enforce structure constraints on events shared across microservices
-
Limit access to your APIs using JWT-based authentication
-
And much more!
This is the course I wish I had when I was learning microservices. A course that focuses on the hardest parts, gives clear explanations, and discusses the pros and cons of different design options. Sign up today and join me in mastering microservices!
-
1How to Get HelpVideo lesson
-
2Course ResourcesText lesson
-
3What Is a Microservice?Video lesson
-
4Data in MicroservicesVideo lesson
-
5Quiz - Data in MicroservicesCuestionario
-
6Big Problems with DataVideo lesson
-
7Sync Communication Between ServicesVideo lesson
-
8Event-Based CommunicationVideo lesson
-
9A Crazy Way of Storing DataVideo lesson
-
10Pros and Cons of Async CommunicationVideo lesson
-
11Important - Optional BoilerplateText lesson
-
12App OverviewVideo lesson
-
13Project SetupVideo lesson
-
14Posts Service CreationVideo lesson
-
15Testing the Posts ServiceVideo lesson
-
16Implementing a Comments ServiceVideo lesson
-
17Quick Comments TestVideo lesson
-
18Note on the React AppText lesson
-
19Addressing Default Export and ReactDom.render WarningsText lesson
-
20React Project SetupVideo lesson
-
21Building Post SubmissionVideo lesson
-
22Handling CORS ErrorsVideo lesson
-
23Fetching and Rendering PostsVideo lesson
-
24Creating CommentsVideo lesson
-
25Displaying CommentsVideo lesson
-
26Completed React AppText lesson
-
27Request Minimization StrategiesVideo lesson
-
28An Async SolutionVideo lesson
-
29Common Questions Around Async EventsVideo lesson
-
30Event Bus OverviewVideo lesson
-
31Important Note about Node v15 and Unhandled Promise RejectionsText lesson
-
32A Basic Event Bus ImplementationVideo lesson
-
33Emitting EventsVideo lesson
-
34Emitting Comment Creation EventsVideo lesson
-
35Receiving EventsVideo lesson
-
36Creating the Data Query ServiceVideo lesson
-
37Parsing Incoming EventsVideo lesson
-
38Using the Query ServiceVideo lesson
-
39Adding a Simple FeatureVideo lesson
-
40Issues with Comment FilteringVideo lesson
-
41A Second ApproachVideo lesson
-
42How to Handle Resource UpdatesVideo lesson
-
43Creating the Moderation ServiceVideo lesson
-
44Adding Comment ModerationVideo lesson
-
45Reminder about Node v15 and Error CatchingText lesson
-
46Handling ModerationVideo lesson
-
47Updating Comment ContentVideo lesson
-
48A Quick TestVideo lesson
-
49Rendering Comments by StatusVideo lesson
-
50Dealing with Missing EventsVideo lesson
-
51Required Node v15+ Update for Query ServiceText lesson
-
52Implementing Event SyncVideo lesson
-
53Event Syncing in ActionVideo lesson
-
54Deployment IssuesVideo lesson
-
55Why Docker?Video lesson
-
56Why Kubernetes?Video lesson
-
57Don't Know Docker? Watch This.Video lesson
-
58Note About Docker Build Output and BuildkitText lesson
-
59Dockerizing the Posts ServiceVideo lesson
-
60Review Some Basic CommandsVideo lesson
-
61Dockering Other ServicesVideo lesson