Skip to main content

.NET Microservices – Full Course for Beginners


Curriculum for the course .NET Microservices – Full Course for Beginners

Learn the foundational elements of a microservices architecture with .NET in this beginner level course. You will incrementally building a real microservices-based application with the .NET platform and C#. 💻 Get the code: https://youtube.dotnetmicroservices.com/netmicroservicesbasics ✏️ Course created by Julio Casal. Check out his channel: https://www.youtube.com/channel/UCw8aBxRvQ2ksWNFuO5eHdmA 🔥 Want to master microservices? Learn more from Julio here: https://dotnetmicroservices.com ⭐️ Course Contents ⭐️ ⌨️ (0:00:14) Module 1- Welcome to the course! ⌨️ (0:04:52) Development environment setup ⌨️ (0:12:39) Customizing VS Code for C# Development ⌨️ (0:17:37) What's wrong with the monolith? ⌨️ (0:25:32) What are microservices? ⌨️ (0:35:18) Module 2- Your first microservice ⌨️ (0:35:53) Creating a microservice via the .NET CLI ⌨️ (0:45:46) Introduction to the REST API and DTOs ⌨️ (0:47:35) Adding the DTOs ⌨️ (0:50:52) Adding the REST API operations ⌨️ (1:15:57) Handling invalid inputs ⌨️ (1:27:04) Module 3- Adding database storage ⌨️ (1:27:51) Introduction to the repository pattern and MongoDB ⌨️ (1:30:13) Implementing a MongoDB repository ⌨️ (1:44:18) Using the repository in the controller ⌨️ (1:55:11) Introduction to Docker ⌨️ (1:56:57) Trying out the REST API with a MongoDB container ⌨️ (2:09:50) Introduction to Dependency Injection and Configuration ⌨️ (2:14:47) Implementing dependency injection and configuration ⌨️ (2:31:40) Module 4- Preparing for the next microservice ⌨️ (2:32:37) Using Postman ⌨️ (2:48:01) Reusing common code via NuGet ⌨️ (2:52:12) Refactoring into a generic MongoDB repository ⌨️ (3:03:02) Refactoring MongoDB registration into extension methods ⌨️ (3:10:07) Moving generic code into a reusable NuGet package ⌨️ (3:26:04) Introduction to Docker Compose ⌨️ (3:28:24) Moving MongoDB to docker compose ⌨️ (3:39:18) Module 5- Synchronous inter-service communication ⌨️ (3:40:12) Creating the Inventory microservice ⌨️ (4:06:47) Introduction to synchronous communication ⌨️ (4:10:29) Implementing synchronous communication via IHttpClientFactory ⌨️ (4:22:15) Understanding timeouts and retries with exponential backoff ⌨️ (4:25:45) Implementing a timeout policy via Polly ⌨️ (4:35:41) Implementing retries with exponential backoff ⌨️ (4:46:53) Understanding the circuit breaker pattern ⌨️ (4:49:59) Implementing the circuit breaker pattern ⌨️ (4:56:36) Module 6- Asynchronous inter-service communication ⌨️ (4:57:31) Introduction to asynchronous communication ⌨️ (5:07:23) Defining the message contracts ⌨️ (5:11:09) Publishing messages via MassTransit ⌨️ (5:22:21) Standing up a RabbitMQ docker container ⌨️ (5:30:04) Refactoring MassTransit configuration into the reusable NuGet package ⌨️ (5:41:11) Consuming messages for eventual data consistency ⌨️ (6:01:54) Removing the inter-service synchronous communication ⌨️ (6:16:32) Module 7- Initial Frontend Integration ⌨️ (6:17:02) Installing Node.js ⌨️ (6:20:13) Getting started with the frontend ⌨️ (6:34:55) Understanding CORS ⌨️ (6:40:50) Adding the CORS middleware ⌨️ (6:46:49) Exploring the frontend to microservices communication ⌨️ (7:05:18) Next Steps #dotnet #microservices 🎉 Thanks to our Champion and Sponsor supporters: 👾 Raymond Odero 👾 Agustín Kussrow 👾 aldo ferretti 👾 Otis Morgan 👾 DeezMaster -- Learn to code for free and get a developer job: https://www.freecodecamp.org Read hundreds of articles on programming: https://freecodecamp.org/news And subscribe for new videos on technology every day: https://youtube.com/subscription_center?add_user=freecodecamp

Watch Online Full Course: .NET Microservices – Full Course for Beginners


Click Here to watch on Youtube: .NET Microservices – Full Course for Beginners


This video is first published on youtube via freecodecamp. If Video does not appear here, you can watch this on Youtube always.


Udemy .NET Microservices – Full Course for Beginners courses free download, Plurasight .NET Microservices – Full Course for Beginners courses free download, Linda .NET Microservices – Full Course for Beginners courses free download, Coursera .NET Microservices – Full Course for Beginners course download free, Brad Hussey udemy course free, free programming full course download, full course with project files, Download full project free, College major project download, CS major project idea, EC major project idea, clone projects download free

Comments

Popular posts from this blog

Fake CVR Generator Denmark

What Is Danish CVR The Central Business Register (CVR) is the central register of the state with information on all Danish companies. Since 1999, the Central Business Register has been the authoritative register for current and historical basic data on all registered companies in Denmark. Data comes from the companies' own registrations on Virk Report. There is also information on associations and public authorities in the CVR. As of 2018, CVR also contains information on Greenlandic companies, associations and authorities. In CVR at Virk you can do single lookups, filtered searches, create extracts and subscriptions, and retrieve a wide range of company documents and transcripts. Generate Danish CVR For Test (Fake) Click the button below to generate the valid CVR number for Denmark. You can click multiple times to generate several numbers. These numbers can be used to Test your sofware application that uses CVR, or Testing CVR APIs that Danish Govt provide. Generate

How To Iterate Dictionary Object

Dictionary is a object that can store values in Key-Value pair. its just like a list, the only difference is: List can be iterate using index(0-n) but not the Dictionary . Generally when we try to iterate the dictionary we get below error: " Collection was modified; enumeration operation may not execute. " So How to parse a dictionary and modify its values?? To iterate dictionary we must loop through it's keys or key - value pair. Using keys

How To Append Data to HTML5 localStorage or sessionStorage?

The localStorage property allows you to access a local Storage object. localStorage is similar to sessionStorage. The only difference is that, while data stored in localStorage has no expiration time untill unless user deletes his cache, data stored in sessionStorage gets cleared when the originating window or tab get closed. These are new HTML5 objects and provide these methods to deal with it: The following snippet accesses the current domain's local Storage object and adds a data item to it using Storage.setItem() . localStorage.setItem('myFav', 'Taylor Swift'); or you can use the keyname directly as : localStorage.myFav = 'Taylor Swift'; To grab the value set in localStorage or sessionStorage, we can use localStorage.getItem("myFav"); or localStorage.myFav There's no append function for localStorage or sessionStorage objects. It's not hard to write one though.The simplest solution goes here: But we can kee