gRPC [Golang] Master Class: Build Modern API & Microservices
gRPC [Golang] Master Class: Build Modern API & Microservices, available at $109.99, has an average rating of 4.62, with 70 lectures, 1 quizzes, based on 4655 reviews, and has 38328 subscribers.
You will learn about 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 This course is ideal for individuals who are Developers who want to understand how to write gRPC Services and Clients in Golang or Architects who want to understand how gRPC works and the concepts behind the different types of API It is particularly useful for Developers who want to understand how to write gRPC Services and Clients in Golang or Architects who want to understand how gRPC works and the concepts behind the different types of API.
Enroll now: gRPC [Golang] Master Class: Build Modern API & Microservices
Summary
Title: gRPC [Golang] Master Class: Build Modern API & Microservices
Price: $109.99
Average Rating: 4.62
Number of Lectures: 70
Number of Quizzes: 1
Number of Published Lectures: 56
Number of Published Quizzes: 1
Number of Curriculum Items: 71
Number of Published Curriculum Objects: 57
Original Price: $119.99
Quality Status: approved
Status: Live
What You Will 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 Should Attend
- 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
Target Audiences
- 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
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.
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 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.
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 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
Instructor
My name is Clément Jean, and I’ll be your instructor in this course. I teach about Protocol Buffers and gRPC with my focus always on helping my students improve their professional proficiencies. I am also the author of some of the most highly-rated & best-selling courses.
With development being a widely accepted and pursued career, I’ve decided it’s time for students to properly learn about gRPC. So, let’s kick start the course! You are in good hands!
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!
I hope to see you inside the course!
Course Curriculum
Chapter 1: gRPC Course Overview
Lecture 1: gRPC Introduction
Lecture 2: Course Objective
Lecture 3: About your instructor
Lecture 4: Important Message
Lecture 5: Prerequisites
Chapter 2: Code Download
Lecture 1: Code Download
Chapter 3: [Theory] gRPC Internals Deep Dive
Lecture 1: Why this section?
Lecture 2: Protocol Buffers & Language Interoperability
Lecture 3: HTTP/2
Lecture 4: 4 Types of gRPC APIs
Lecture 5: Scalability in gRPC
Lecture 6: Security in gRPC (SSL)
Lecture 7: gRPC vs REST
Lecture 8: Section Summary – why use gRPC
Chapter 4: [Hands-On] gRPC Project Overview & Setup
Lecture 1: Project Setup (Golang + VSCode + Protoc)
Lecture 2: Go Dependencies Setup
Lecture 3: Makefile (Windows)
Lecture 4: Makefile
Lecture 5: Server Setup Boilerplate Code
Lecture 6: Client Setup Boilerplate Code
Chapter 5: [Hands-On] gRPC Unary
Lecture 1: Unary API Server Implementation
Lecture 2: Unary API Client Implementation
Lecture 3: [Exercise] Sum API
Lecture 4: [Solution] Sum API
Chapter 6: [Hands-On] gRPC Server Streaming
Lecture 1: Server Streaming API Server Implementation
Lecture 2: Server Streaming API Client Implementation
Lecture 3: [Exercise] Primes API
Lecture 4: [Solution] Primes API
Chapter 7: [Hands-On] gRPC Client Streaming
Lecture 1: Client Streaming API Server Implementation
Lecture 2: Client Streaming API Client Implementation
Lecture 3: [Exercise] Avg API
Lecture 4: [Solution] Avg API
Chapter 8: [Hands-On] gRPC Bi-Directional Streaming
Lecture 1: Bi-Directional Streaming API Server Implementation
Lecture 2: Bi-Directional Streaming API Client Implementation
Lecture 3: [Exercise] Max API
Lecture 4: [Solution] Max API
Chapter 9: [Hands-On] gRPC Advanced Features Deep Dive
Lecture 1: [Hands-On] Errors implementation
Lecture 2: [Hands-On] Deadlines
Lecture 3: [Hands-On] SSL Security
Lecture 4: gRPC Reflection & Evans CLI
Chapter 10: [Hands-On] CRUD API with MongoDB
Lecture 1: Install Docker
Lecture 2: Docker-Compose setup
Lecture 3: Blog Service Golang Setup
Lecture 4: CreateBlog Server
Lecture 5: CreateBlog Client
Lecture 6: ReadBlog Server
Lecture 7: ReadBlog Client
Lecture 8: UpdateBlog Server
Lecture 9: UpdateBlog Client
Lecture 10: ListBlog Server
Lecture 11: ListBlog Client
Lecture 12: DeleteBlog Server
Lecture 13: DeleteBlog Client
Chapter 11: Next Steps
Lecture 1: gRPC in real life
Lecture 2: Congrats & Next Steps
Lecture 3: Bonus Lecture: Student Special Coupons for my Other courses
Instructors
-
Clément Jean
Protocol Buffers and gRPC Enthusiast
Rating Distribution
- 1 stars: 46 votes
- 2 stars: 45 votes
- 3 stars: 275 votes
- 4 stars: 1368 votes
- 5 stars: 2921 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Language Learning Courses to Learn in November 2024
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024