About gRPC

Google Remote Procedure Call (gRPC) is a modern, high-performance framework for APIs that evolves the age-old remote procedure call (RPC) protocol. At the application level, gRPC streamlines messaging between clients and back-end services.

gRPC was initially created by Google. It is open source under the Apache License 2.0 and part of the Cloud Native Computing Foundation (CNCF) ecosystem of cloud-native offerings. gRPC offers comprehensive support across most popular development stacks, including Java, JavaScript, C#, Go, Swift, and NodeJS. Version 1.0 was released in August 2016, and the current version is 1.48.1 as of the writing of this blog (see the most recent version here).

Actually, gRPC is also a set of libraries that provide higher-level features across platforms that common HTTP libraries typically do not. 

gRPC uses:

  • HTTP/2 network protocol for transport.
  • Protocol Buffers (protobuf) as the interface description language – is a data format used to serialize structured data. It can be up to 8x faster than JSON serialization with messages 60-80% smaller.
  • support for sending multiple parallel requests over the same connection – when HTTP 1.1 limits processing to one request/response message at a time.

What is gRPC-Web

Modern browsers still do not fully support HTTP/2 protocol. There are no browser APIs with enough control over requests yet, so gRPC-Web (from Google) is a standardized plugin that solves this problem and makes gRPC usable in today’s browsers. gRPC-Web brings many of gRPC great features to current browser apps, lioke:

  • small binary messages
  • strongly typed, code-generated clients
  • compact protobuf messages
  • server streaming

Protocol Buffers

By default, gRPC uses Protocol Buffers as its interface description language. Google originally developed protobuf for internal use, but has subsequently provided code generators for multiple languages under an open-source license.

Using a cross-platform Interface Definition Language (IDL), developers define a service contract for each microservice. It provides platform-neutral serialization format for messages that services send to each other. Each message is serialized as a standard protobuf representation and exchanged between the client and remote service. Unlike JSON or XML, protobuf messages are serialized as compiled binary bytes.


Here is an example of a proto file:

As you can see, it’s just an ordinary text file with a .proto extension. Protocol buffer data is structured as messages, where each message is a small logical record of information containing a series of name-value pairs called fields

At the top of the file we define RPC service methods. For each method should be defined its request and response types.

The same contract file could be used for gRPC clients and services built on different development platforms.

PROTOC

To use the .proto file, you need to install the Protobuf compiler, protoc. It is used for the creation of auto-generated files from .proto files. After using this compiler, the .proto file will be serialized into a binary format which is compact, forward- and backward-compatible.

Binary gRPC messages are always smaller than an equivalent text-based JSON message, which is a major performance advantage of gRPC over REST APIs.

Because protoc doesn’t support TypeScript, we will need a plugin to help us generate a TypeScript service and client from the .proto file for our web applications. The plugin that does this for us is called ts-protoc-gen.

This plugin can also generate service definitions as either .js and .d.ts files in the structure required by grpc-web. Let’s generate our TypeScript definitions now using protoc by executing the following command:

For this to work in an Angular app, this command must be strictly executed in the root folder of your JavaScript app (at the same level as src folder). After this step you will get 4 files, 2 in JavaScript (services + client file and messages file) plus 2 in TypeScript (definition files).

Integration with Angular

The communication between you Angular web application and a gRPC API is a bit more complex than a simple request to a REST API. Below is code that retrieves TimeZone data with a unary RPC call*:

*NOTE: to make API calling you need to create a new Request() object. Then you add values to the request fields through the setParam methods. In Metadata, you can pass what we usually used to pass in headers when sending http requests (JWT-token for example).

To adhere to Angular best practices, it’s better to return Observable to subscribers after your gRPC call.

gRPC server does not response with the usual JSON of a REST API or even a string that can be converted to JSON. Field values must be obtained using methods like response.getToken(). Here is some code that reads data from a gRPC response:

gRPC Benefits

  • Lightweight messages. Depending on the type of call, gRPC-messages can be up to 30 percent smaller in size than JSON messages thanks to their binary nature.
  • High performance. By different evaluations, gRPC is from 5 to even 8 times faster than REST+JSON communication.
  • Built-in code generation. gRPC has automated code generation in different programming languages including Java, C++, Python, Go, Dart, Objective-C, Ruby, and more.
  • More connection options. While REST focuses on request-response architecture, gRPC provides support for data streaming like server-side, client-side and in the future – bidirectional streaming.
  • Is efficient in multi-language environments.

gRPC Weaknesses

  • Not human-readable format. After compressing data to a binary format, protobuf files become non-human readable, unlike XML and JSON. To analyze payloads, perform debugging, and write manual requests, devs must use extra tools.
  • High entry threshold. Compared to REST which primarily use JSON, it will take some time to start working with protocol buffers and find tools for dealing with HTTP/2 protocol.
  • Limited Browser Support. Because gRPC heavily uses HTTP/2, it is impossible to call a gRPC service from a web browser directly. No modern browser provides the control needed over web requests to support a gRPC client. Therefore, a proxy layer and gRPC-web are required to perform conversions between HTTP/1.1 and HTTP/2.
  • Still does not have integrations with popular FE frameworks (React, Angular, Vue).

I hope this provides the information you would need to gets started using gRPC in your Angular applications, or at least provides you with the information you need to know whether it’s right for your needs.

Related Blog Posts

We hope you’ve found this to be helpful and are walking away with some new, useful insights. If you want to learn more, here are a couple of related articles that others also usually find to be interesting:

Our Gear Is Packed and We're Excited to Explore With You

Ready to come with us? 

Together, we can map your company’s software journey and start down the right trails. If you’re set to take the first step, simply fill out our contact form. We’ll be in touch quickly – and you’ll have a partner who is ready to help your company take the next step on its software journey. 

We can’t wait to hear from you! 

Main Contact

This field is for validation purposes and should be left unchanged.

Together, we can map your company’s tech journey and start down the trails. If you’re set to take the first step, simply fill out the form below. We’ll be in touch – and you’ll have a partner who cares about you and your company. 

We can’t wait to hear from you! 

Montage Portal

Montage Furniture Services provides furniture protection plans and claims processing services to a wide selection of furniture retailers and consumers.

Project Background

Montage was looking to build a new web portal for both Retailers and Consumers, which would integrate with Dynamics CRM and other legacy systems. The portal needed to be multi tenant and support branding and configuration for different Retailers. Trailhead architected the new Montage Platform, including the Portal and all of it’s back end integrations, did the UI/UX and then delivered the new system, along with enhancements to DevOps and processes.

Logistics

We’ve logged countless miles exploring the tech world. In doing so, we gained the experience that enables us to deliver your unique software and systems architecture needs. Our team of seasoned tech vets can provide you with:

Custom App and Software Development

We collaborate with you throughout the entire process because your customized tech should fit your needs, not just those of other clients.

Cloud and Mobile Applications

The modern world demands versatile technology, and this is exactly what your mobile and cloud-based apps will give you.

User Experience and Interface (UX/UI) Design

We want your end users to have optimal experiences with tech that is highly intuitive and responsive.

DevOps

This combination of Agile software development and IT operations provides you with high-quality software at reduced cost, time, and risk.

Trailhead stepped into a challenging project – building our new web architecture and redeveloping our portals at the same time the business was migrating from a legacy system to our new CRM solution. They were able to not only significantly improve our web development architecture but our development and deployment processes as well as the functionality and performance of our portals. The feedback from customers has been overwhelmingly positive. Trailhead has proven themselves to be a valuable partner.

– BOB DOERKSEN, Vice President of Technology Services
at Montage Furniture Services

Technologies Used

When you hit the trails, it is essential to bring appropriate gear. The same holds true for your digital technology needs. That’s why Trailhead builds custom solutions on trusted platforms like .NET, Angular, React, and Xamarin.

Expertise

We partner with businesses who need intuitive custom software, responsive mobile applications, and advanced cloud technologies. And our extensive experience in the tech field allows us to help you map out the right path for all your digital technology needs.

  • Project Management
  • Architecture
  • Web App Development
  • Cloud Development
  • DevOps
  • Process Improvements
  • Legacy System Integration
  • UI Design
  • Manual QA
  • Back end/API/Database development

We partner with businesses who need intuitive custom software, responsive mobile applications, and advanced cloud technologies. And our extensive experience in the tech field allows us to help you map out the right path for all your digital technology needs.

Our Gear Is Packed and We're Excited to Explore with You

Ready to come with us? 

Together, we can map your company’s tech journey and start down the trails. If you’re set to take the first step, simply fill out the contact form. We’ll be in touch – and you’ll have a partner who cares about you and your company. 

We can’t wait to hear from you! 

Thank you for reaching out.

You’ll be getting an email from our team shortly. If you need immediate assistance, please call (616) 371-1037.