HOME > Development > gRPC [Node.js] MasterClass- Build Modern API Microservices

gRPC [Node.js] MasterClass- Build Modern API Microservices

  • Development
  • Feb 16, 2025
SynopsisgRPC [Node.js] MasterClass: Build Modern API & Microservi...
gRPC [Node.js] MasterClass- Build Modern API Microservices  No.1

gRPC [Node.js] MasterClass: Build Modern API & Microservices, available at $69.99, has an average rating of 4.19, with 71 lectures, 2 quizzes, based on 429 reviews, and has 5146 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 NodeJS 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 NodeJS 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 NodeJS or Architects who want to understand how gRPC works and the concepts behind the different types of API.

Enroll now: gRPC [Node.js] MasterClass: Build Modern API & Microservices

Summary

Title: gRPC [Node.js] MasterClass: Build Modern API & Microservices

Price: $69.99

Average Rating: 4.19

Number of Lectures: 71

Number of Quizzes: 2

Number of Published Lectures: 59

Number of Published Quizzes: 1

Number of Curriculum Items: 73

Number of Published Curriculum Objects: 60

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 NodeJS 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 NodeJS
  • 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 NodeJS
  • 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 and Netflix and enables programmers to write microservices 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 NodeJS. 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 Node.JS Master Class is the best way to get a great overview of all the possibilities offered by gRPC with your favorite 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 and Client Code in JavaScript
    > Implement Unary, Server Streaming, Client Streaming and Bi-Directional Streaming API
    > Practice your learning with Exercises and Solutions
    > Implement advanced concepts such as Error Handling, Deadlines and 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 NodeJS. 

    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 NPM and learn how to trigger code generation

  • [Hands-On] gRPC Unary: API description and implementation

  • [Hands-On] gRPC Server Streaming: API description and implementation

  • [Hands-On] gRPC Client Streaming: API description and implementation

  • [Hands-On] gRPC Bi-Directional Streaming: API description and implementation

  • [Hands-On] gRPC Advanced Features Deep Dive: Advanced features such as Error Handling, Deadlines, SSL Security. 

  • Next Steps: Some useful real-world links and 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 and 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 Structure

    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: Install Node.js and VS Code

    Lecture 2: NPM Init

    Lecture 3: NPM Scripts

    Lecture 4: Server Setup – Boilerplate Code

    Lecture 5: Client Setup – Boilerplate Code

    Chapter 5: [Hands-On] gRPC Unary

    Lecture 1: Greet API Definition

    Lecture 2: Unary API Server Implementation

    Lecture 3: Unary API Client Implementation

    Lecture 4: [Exercise] Sum API

    Lecture 5: [Solution] Sum API

    Chapter 6: [Hands-On] gRPC Server Streaming

    Lecture 1: GreetManyTimes API Definition

    Lecture 2: Server Streaming API Server Implementation

    Lecture 3: Server Streaming API Client Implementation

    Lecture 4: [Exercise] Primes API

    Lecture 5: [Solution] Primes API

    Chapter 7: [Hands-On] gRPC Client Streaming

    Lecture 1: LongGreet API Definition

    Lecture 2: Client Streaming API Server Implementation

    Lecture 3: Client Streaming API Client Implementation

    Lecture 4: [Exercise] Avg API

    Lecture 5: [Solution] Avg API

    Chapter 8: [Hands-On] gRPC Bi-Directional Streaming

    Lecture 1: GreetEveryone API Definition

    Lecture 2: Bi-Directional Streaming API Server Implementation

    Lecture 3: Bi-Directional Streaming API Client Implementation

    Lecture 4: [Exercise] Max API

    Lecture 5: [Solution] Max API

    Chapter 9: [Hands-On] gRPC Advanced Features Deep Dive

    Lecture 1: [Hands-On] Error Handling

    Lecture 2: [Hands-On] Deadlines

    Lecture 3: [Hands-On] SSL Security

    Chapter 10: [Hands-On] CRUD API with MongoDB

    Lecture 1: Install Docker

    Lecture 2: Boilerplate

    Lecture 3: MongoDB Setup

    Lecture 4: Blog Proto File

    Lecture 5: CreateBlog Server

    Lecture 6: CreateBlog Client

    Lecture 7: ReadBlog Server

    Lecture 8: ReadBlog Client

    Lecture 9: UpdateBlog Server

    Lecture 10: UpdateBlog Client

    Lecture 11: ListBlog Server

    Lecture 12: ListBlog Client

    Lecture 13: DeleteBlog Server

    Lecture 14: DeleteBlog Client

    Chapter 11: Next Steps

    Lecture 1: gRPC Services in the Real Word

    Lecture 2: Congrats & Next Steps

    Lecture 3: Bonus Lecture: Special discounts for our other courses

    Instructors

  • gRPC [Node.js] MasterClass- Build Modern API Microservices  No.2
    Clément Jean
    Protocol Buffers and gRPC Enthusiast
  • Rating Distribution

  • 1 stars: 13 votes
  • 2 stars: 16 votes
  • 3 stars: 41 votes
  • 4 stars: 132 votes
  • 5 stars: 227 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!