gRPC is a new and modern framework for building scalable, modern and fast API. It is leveraged by many top tech companies such as Google, Square & Netflix and enables programmers to write micro-services in any language they want while keeping the ability to easily create communications between these services. It relies on Protocol Buffers for the transport mechanism and Service Definition language.
gRPC [Golang] Master Class: Build Modern API & Microservices
gRPC [Golang] Master Class: Build Modern API & Microservices is a 47-lesson 3 hours 46 minutes self-paced course by Udemy. gRPC is a new and modern framework for building scalable, modern and fast API.
Course facts
- Lessons
- 47
- Duration
- 3 hours 46 minutes
- Level
- All levels
- Language
- English
- Updated
- Instructor
- Udemy
- Price
- Premium
In this course, we are going to explore in depth, with hands-on lectures, all the aspects to get started with gRPC.
This course is hands-on and you will implement two services: Greet and a Calculator Service.
In just a few hours, you will know everything you need to know to write your .proto files, generate code in your Favourite Programming, and implement your services, servers and client in Golang. There will be plenty of hands-on lectures and exercises for you to practice your newly acquired skills.
It's time to say goodbye to slow and clunky REST API, and opt-in for a better API framework.
gRPC Golang Master Class is the best way to get a great overview of all the possibilities offered by gRPC with your favourite language
> Learn the gRPC theory to understand how gRPC works
> Compare gRPC and REST API paradigm
> Write your gRPC service definition in .proto files
> Generate Server & Client Code in Golang using the Gradle gRPC plugin
> Implement Unary, Server Streaming, Client Streaming & Bi-Directional Streaming API
> Practice your learning with Exercises & Solutions
> Implement advanced concepts such as Error Handling, Deadlines & SSL Security
> Implement a full CRUD API on top of MongoDB
> Get pointers to expand your learning journey and get inspired by real world gRPC services
Note: This course expects you have some preliminary knowledge about Protocol Buffers and Golang.
Instructor
Stephane Maarek is the instructor of this course. He is the author of highly successful courses such as Apache Kafka Series and AWS Series. He is passionate about micro-services and data. He has already taught to 40000+ students and received 12000+ reviews.
He shares all his Data knowledge on the platform, taking the time to explain every concept and provide students with both theoretical and practical dimensions. You are in good hands!
Section outline:
gRPC Course Overview: Get an understand of the course objectives, how the course is structured, download the course code and get ready!
[Theory] gRPC Internals Deep Dive: Learn how gRPC works behind the scenes. Learn about HTTP/2, Protocol Buffers efficiencies, and the differences of gRPC and REST.
[Hands-On] gRPC Project Overview & Setup: Setup your project using Gradle and learn how to trigger code generation
[Hands-On] gRPC Unary: API description & implementation
[Hands-On] gRPC Server Streaming: API description & implementation
[Hands-On] gRPC Client Streaming: API description & implementation
[Hands-On] gRPC Bi-Directional Streaming: API description & implementation
[Hands-On] gRPC Advanced Features Deep Dive: Advanced features such as Error Handling, Deadlines, SSL Security.
Next Steps: Some useful real-world links & where to take your learning from here
This Course Also Comes With:
✔ Lifetime Access to All Future Updates
✔ A responsive instructor in the Q&A Section
✔ Links to interesting articles, and lots of good code to base your next template onto
✔ Udemy Certificate of Completion Ready for Download
✔ A 30 Day "No Questions Asked" Money Back Guarantee!
- Good Understanding of Golang Programming Language
- Good Understanding of Protocol Buffers
- Developers who want to understand how to write gRPC Services and Clients in Golang
- Architects who want to understand how gRPC works and the concepts behind the different types of API
What you'll learn:
- Learn the gRPC theory to understand how gRPC works
- Compare gRPC and REST API paradigm
- Write your gRPC service definition in .proto files
- Generate Server & Client Code in Golang using the protoc gRPC Plugin
- Implement Unary, Server Streaming, Client Streaming & Bi-Directional Streaming API
- Practice your learning with Exercises & Solutions
- Implement advanced concepts such as Error Handling, Deadlines & SSL Security
- Implement a full CRUD API on top of MongoDB
- Get pointers to expand your learning journey and get inspired by real world gRPC services
Who teaches gRPC [Golang] Master Class: Build Modern API & Microservices? Udemy
Udemy is the largest open marketplace for online courses on the internet. Founded in 2010 by Eren Bali, Oktay Caglar, and Gagan Biyani and headquartered in San Francisco, the company went public on the Nasdaq in 2021 under the ticker UDMY. The platform hosts well over two hundred thousand courses across software development, IT and cloud, data science, design, business, marketing, and creative skills, taught by tens of thousands of independent instructors. Roughly seventy million learners use it worldwide, and the corporate arm — Udemy Business — supplies a curated subset of that catalog to enterprise customers.
Because Udemy is a marketplace rather than a single editorial publisher, the catalog is uneven by design. The strongest material lives in the long-form, project-based courses authored by working engineers — full-stack JavaScript, React, Node.js, Python data science, AWS, Docker and Kubernetes, mobile development with Flutter and React Native, and cloud certification preparation. The CourseFlix listing under this source is the slice of that catalog that has been mirrored here for offline-friendly viewing, organized by topic and updated as new releases land. Pricing on Udemy itself swings dramatically with the site's near-permanent sales, which is why the platform is best treated as a deep reference catalog: pick instructors with strong reviews and a track record of updating their material rather than buying on the headline price alone.
What lessons are included in gRPC [Golang] Master Class: Build Modern API & Microservices?
| # | Lesson Title | Duration | Access |
|---|---|---|---|
| 1 | gRPC Introduction Demo | 05:13 | |
| 2 | Course Objective | 02:00 | |
| 3 | About your instructor | 00:54 | |
| 4 | Important Message | 00:39 | |
| 5 | Protocol Buffers & Language Interoperability | 04:02 | |
| 6 | HTTP/2 | 05:16 | |
| 7 | 4 Types of gRPC APIs | 02:23 | |
| 8 | Scalability in gRPC | 01:00 | |
| 9 | Security in gRPC (SSL) | 01:12 | |
| 10 | gRPC vs REST | 02:21 | |
| 11 | Section Summary - why use gRPC | 01:04 | |
| 12 | Project Setup (Golang + VSCode + Protoc) | 03:41 | |
| 13 | Go Dependencies Setup | 07:56 | |
| 14 | Makefile | 02:10 | |
| 15 | Server Setup Boilerplate Code | 06:31 | |
| 16 | Client Setup Boilerplate Code | 03:14 | |
| 17 | Unary API Server Implementation | 03:57 | |
| 18 | Unary API Client Implementation | 04:08 | |
| 19 | [Solution] Sum API | 08:38 | |
| 20 | Server Streaming API Server Implementation | 04:24 | |
| 21 | Server Streaming API Client Implementation | 04:04 | |
| 22 | [Solution] Primes API | 09:49 | |
| 23 | Client Streaming API Server Implementation | 04:19 | |
| 24 | Client Streaming API Client Implementation | 05:43 | |
| 25 | [Solution] Avg API | 09:38 | |
| 26 | Bi-Directional Streaming API Server Implementation | 03:50 | |
| 27 | Bi-Directional Streaming API Client Implementation | 06:25 | |
| 28 | [Solution] Max API | 10:35 | |
| 29 | [Hands-On] Errors implementation | 10:46 | |
| 30 | [Hands-On] Deadlines | 10:39 | |
| 31 | [Hands-On] SSL Security | 08:20 | |
| 32 | gRPC Reflection & Evans CLI | 05:23 | |
| 33 | Install Docker | 02:16 | |
| 34 | Docker-Compose setup | 03:17 | |
| 35 | Blog Service Golang Setup | 09:05 | |
| 36 | CreateBlog Server | 08:24 | |
| 37 | CreateBlog Client | 05:15 | |
| 38 | ReadBlog Server | 04:10 | |
| 39 | ReadBlog Client | 03:46 | |
| 40 | UpdateBlog Server | 04:53 | |
| 41 | UpdateBlog Client | 05:09 | |
| 42 | ListBlog Server | 04:28 | |
| 43 | ListBlog Client | 03:24 | |
| 44 | DeleteBlog Server | 03:41 | |
| 45 | DeleteBlog Client | 03:24 | |
| 46 | gRPC in real life | 02:13 | |
| 47 | Congrats & Next Steps | 02:51 |
Get instant access to all 46 lessons in this course, plus thousands of other premium courses. One subscription, unlimited knowledge.
Learn more about subscriptionWhat courses are similar to gRPC [Golang] Master Class: Build Modern API & Microservices?
-
Updated 2y agoGo: The Complete Developer's Guide (Golang)
By: Udemy, Stephen GriderGo is an open source programming language created by Google. As one of the fastest growing languages in terms of popularity, its a great time to pick up the ba8h 21m -
Updated 4mo agoGolang for Beginners
By: Zero To MasteryLearn Golang from scratch. Dive into the world of scalable and high-performance software. Prepare your skills for real-world projects and interviews.2h 28m -
Updated 2y agoLearn to Create Web Applications using Go
By: useGolang (Jon Calhoun)Why can't anyone point me to a concrete example of how to hash and store user passwords? Or how to build the rest of an authentication system?43h 35m -
Updated 2y agoDesign Patterns in Go
By: UdemyThis course provides an overview of all the Gang of Four (GoF) design patterns as outlined in their seminal book, together with modern-day variations.9h 47m -
Updated 2y agoGo Programming (Golang): The Complete Developer's Guide
By: Zero To MasteryLearn Golang from scratch, from an industry expert. Build real-world apps. You'll learn the fundamentals all the way to advanced concurrency so that you go from13h 10m -
Updated 4mo agoThe Art of Command Line Interfaces
By: ByteSizeGo, Marian MontagninoMaster the creation of high-quality CLI applications in Go. Video course by Marian, bestselling author and expert in command-line interface programming.5h 51m -
Updated 2y agoUltimate Go: Software Design with Kubernetes
By: Ardan LabsThis course teaches you how to build production-level services in Go, leveraging the power of a Domain Driven, Data Oriented Archiecture deployed in Kubernetes.18h 2m -
Updated 2y agoFor the Love of Go: Book/Video Bundle
By: John ArundelHello, and welcome to learning Go! It's great to have you here. This is the bundled edition of ‘For the Love of Go’, a book introducing the Go programming langu6h 12m
More courses by Udemy
-
Updated 3y agoComplete C# Unity Game Developer 3D
This is the long-awaited sequel to the Complete Unity Developer - one of the most popular e-learning courses on the internet!30h 34m -
Updated 3y agoNest.js Microservices: Build & Deploy a Scaleable Backend
Nest.js is an incredible backend framework that allows us to build scaleable Nodejs backends with very little complexity. A Microservice architecture is a popul5h 39m5/5 -
Updated 3y agoThe HTML & CSS Bootcamp 2023 Edition
Brand new HTML & CSS course, just released in February 2023 Check out the promo video to see the beautiful, responsive projects we build in this course!37h 18m5/5 -
Updated 3y agoMicroservices with Node JS and React
Event-Based Architecture? Covered! Server side rendering with React? Yep. Scalable, production-ready code? Its here!54h 13m5/5 -
FreeClassic100 Days of Code - The Complete Python Pro Bootcamp for 2023
Watch the 100 Days of Code Python Pro Bootcamp free: 100 daily projects covering Python basics, web scraping, data science, automation and GUI apps.58h 35m5/5 -
Updated 3y agoReact - The Complete Guide
React: The Complete Guide by Maximilian Schwarzmüller — original 2022 edition covering React hooks, Redux, Context API, Next.js basics.47h 42m5/5