• Stars
    star
    224
  • Rank 177,792 (Top 4 %)
  • Language
    JavaScript
  • Created almost 5 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Full feature integration library for gRPC-Web into React

ReactRPC

badge badge badge ​ Full featured integration library for React and gRPC-Web. Core functions include: packaging the generated proto messages and client stubs, a unified API of gRPC call methods that support Google's and Improbable's gRPC-web specs for unary, client streaming, server streaming and bi-directional streaming. ​

Getting Started

Install

npm install --save reactrpc

1. Define the Services

Create proto files as the schema for your Server and Client Stubs. It should define the gRPC call methods needed to communicate between the Server and Browser. These files will be used to give your components superpowers -- Remote Procedure Call (RPC) methods. ​ helloworld.proto

syntax = "proto3";
​
package helloworld;
​
service Greeter {
  rpc SayHello (HelloRequest) returns (HelloReply);
}
​
message HelloRequest {
  string name = 1;
}
​
message HelloReply {
  string message = 1;
}

book_service.proto

syntax = "proto3";
​
package examplecom.library;
​
message Book {
  int64 isbn = 1;
  string title = 2;
  string author = 3;
}
​
message GetBookRequest {
  int64 isbn = 1;
}
​
message QueryBooksRequest {
  string author_prefix = 1;
}
​
service BookService {
  rpc GetBook(GetBookRequest) returns (Book) {}
  rpc QueryBooks(QueryBooksRequest) returns (stream Book) {}
}
​

2. Generate a Protobuf Messages and Client Service Stub

​ In order to pass superpowers to our Browser, we first need to package our .proto file. ​

For Google's implementation:

To generate the protobuf messages and client service stub class from your .proto definitions, we need the protoc binary and the protoc-gen-grpc-web plugin. ​ You can download the protoc-gen-grpc-web protoc plugin from Google's release page: ​ If you don't already have protoc installed, you will have to download it first from here. ​ Make sure they are both executable and are discoverable from your PATH. ​ For example, in MacOS, you can do: ​

$ sudo mv ~/Downloads/protoc-gen-grpc-web-1.0.7-darwin-x86_64 \
  /usr/local/bin/protoc-gen-grpc-web
$ chmod +x /usr/local/bin/protoc-gen-grpc-web

​ When you have both protoc and protoc-gen-grpc-web installed, you can now run this command: ​

$ protoc -I=. helloworld.proto \
  --js_out=import_style=commonjs:. \
  --grpc-web_out=import_style=commonjs,mode=grpcwebtext:.

​ After the command runs successfully on your [name of proto].proto you should see two generated files [name of proto]_pb.js which contains the messages and [name of proto]_grpc_web_pb.js that contains the services: ​ For instance the helloworld.proto file will generate to:

  • messages : helloworld_pb.js
  • services : helloworld_grpc_web_pb.js

For Improbable's implementation:

​ For the latest stable version of the ts-protoc-gen plugin: ​

npm install ts-protoc-gen

​ Download or install protoc (the protocol buffer compiler) for your platform from the github releases page or via a package manager (ie: brew, apt). ​ Download protoc from here ​ When you have both protoc and ts-protoc-gen installed, you can now run this command: ​

--plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts \
  -I ./proto \
  --js_out=import_style=commonjs,binary:./ts/_proto \
  --ts_out=service=true:./ts/_proto \
  ./proto/examplecom/library/book_service.proto

After the command runs successfully on your [insert_name].proto you should see two generated files [insert_name]_pb.js which contains the messages and [insert_name]_pb_service.js that contains the services: ​ For instance for the helloworld.proto you should see:

  • messages : book_service_pb.js
  • services : book_service_pb_service.js ​ ​

3. Create proxy server

​ In order for gRPC-web to communicate with other gRPC servers, it requires a proxy server as a translation layer to convert between gRPC-web protobuffers and gRPC protobuffers. Links to examples on how to set those up can be found here (Envoy proxy) and here (Improbable's proxy)* ​

*Note: To enable bidirectional/client-side streaming you must use Improbable's spec and its proxy with websockets enabled ​

4. Set up React component

​ Require in the reactRPC library and protobuf files in your React JSX file. Run the build method with the following params: the message, the services and the URL to the proxy server endpoint. ​

Google's Implementation

const { googleRPC } = require("reactRPC")const messages = require("helloworld_pb.js")const services = require("helloworld_grpc_web_pb.js")const URL = "http://" + window.location.hostname + ":8080"googleRPC.build(messages, services, URL)

Export the googleRPC component by passing it as an argument into the reactRPC wrapper as follows: ​

export default googleRPC.wrapper(<your component>);

Improbable's Implementation

const { improbRPC } = require("reactRPC")const messages = require("book_service_pb.js")const services = require("book_service_pb_service.js")const URL = "http://" + window.location.hostname + ":8080"improbRPC.build(messages, services, URL)

​ Export the improbRPC component by passing it as an argument into the improbRPC wrapper as follows: ​

export default improbRPC.wrapper(<your component>);

5. Define a message

​ We define a request message by creating an object with the keys as the message field along with a msgType property specifying a message that we set in the proto file. Here is an example of a HelloRequest message in the helloworld.proto file : ​ ​

const message = { name: "John", lastName: "Doe", msgType: "HelloRequest" }

6. Create the function

​ We define a function by listing its service and procedure calls on this.props. We then pass in the message we defined above, and an object with any metadata data required (learn more about metadata here). For unary calls a third parameter of a callback is required while streaming calls have built in event listeners. ​ ​

// unary call:this.props.Greeter.sayHello(
  message,
      {},
      (err, response) => {
        console.log(response)
      }
    );// streaming callconst stream = this.props.Greeter.sayRepeatHello(
  message,
      {}
    );
    stream.onMessage(res => {
      console.log(res.getMessage());
    });

ReactRPC library supports unary, client-side, server-side and bi-directional streaming.
​ ​

Additional details

Nested Messages

​ In the proto file, messages can be nested in other messages. In this example, the FullName message is used in the TestNested message: ​

message FullName{
  string name = 1;
  string lastName = 2;
}
​
message TestNested{
  FullName myName = 1;
}

Event listeners for Streams

​ For flexibility ReactRPC models both Google and Improbable's eventlisteners: ​

Google's Implementation

const stream = this.props.Greeter.sayRepeatHello(
  message,
      {}
    );
    stream.on("data", res => {
      console.log(res.getMessage());
    });
    stream.on("status", res => {
      console.log(res.getMessage());
    });
    stream.on("end", res => {
      console.log(res.getMessage());
    });

Improbable's Implementation

const stream = this.props.Greeter.sayRepeatHello(
  message,
      {}
    );
    stream.onMessage(res => {
      console.log(res.getMessage());
    });
    stream.onHeaders(res => {
      console.log(res.getMessage());
    });
    stream.onEnd(res => {
      console.log(res.getMessage());
    });

For improbable's bidirectional streaming there is client.send that opens the stream and client.finishSend to close the stream as follows: ​

const stream = this.props.Greeter.sayRepeatHello(
  message,
      {}
    );
    stream.send({ name: "John", lastName: "Doe", msgType: "SayHelloRequest" });
    });
    stream.finishSend({ name: "John", lastName: "Doe", msgType: "SayHelloRequest" });
    });

More Repositories

1

sapling

Sapling - A convenient way to traverse your React app in VS Code
JavaScript
489
star
2

Kafka-Sprout

🚀 Web GUI for Kafka Cluster Management
Java
429
star
3

GraphQuill

Real-time GraphQL API Exploration in VS Code
TypeScript
395
star
4

protographql

ProtoGraphQL is a prototyping tool that empowers developers to build and visualize GraphQL schemas and queries without writing any code.
JavaScript
360
star
5

seeql

see your database in a new way
TypeScript
344
star
6

Realize

A React component tree visualizer
JavaScript
327
star
7

Allok8

⚡️A pretty swell Kubernetes visualization tool
JavaScript
273
star
8

ReactRTC

NPM package that simplifies set-up of WebRTC as importable React components
JavaScript
270
star
9

svend3r

Interactive plug and play charting library for Svelte
JavaScript
267
star
10

aether

All-in-One Memory Leak Testing Solution
JavaScript
250
star
11

Yodelay

Your preferred gRPC endpoint testing tool. Making sure your outbound 🗣️ ‘yodelay’ returns the ‘IiiOoo’ 📣 that you expect
TypeScript
228
star
12

atomos

Atomos is an open source dev tool for Recoil that provides real-time visualization of the component tree and atom-selector relationships to facilitate debugging of a React application.
JavaScript
218
star
13

Dockter

A low-overhead, open-source Docker log management tool
TypeScript
217
star
14

svelte-sight

A Svelte dev tool for visualizing component hierarchy, state, and props of your application
Svelte
215
star
15

KUR8

A visual overview of Kubernetes architecture and Prometheus metrics
JavaScript
213
star
16

OpticQL

Developer tool focused on streamlining the performance testing and optimization of GraphQL API
JavaScript
212
star
17

connext-js

A middleware and route handling solution for Next.js.
JavaScript
210
star
18

hypnos

The best way to test GraphQL calls to RESTful APIs.
JavaScript
205
star
19

Equa11y

A stream-lined command line tool for developers to easily run accessibility testing locally through axe-core and puppeteer.
TypeScript
204
star
20

preducks

React/Redux/Typescript Application Prototyping & Smart Boilerplate Generation Tool
TypeScript
199
star
21

drawql

an OSS tool for designing a graphql endpoint in Apollo
CSS
195
star
22

kubermetrics

JavaScript
194
star
23

TotalRecoilJS

TotalRecoilJS is a tool created to help developers visualize/debug and track their Recoil state via a Chrome extension.
JavaScript
193
star
24

Horus

🎯 A gRPC-Node Distributed Tracing and Monitoring Tool.
JavaScript
187
star
25

PostQL

Web app to visualize your GraphQL metrics and provide historical analytics
TypeScript
186
star
26

Ahoy

Ahoy! is a GUI tool for DevOps engineers which distills the many functions of Helm into a user-friendly interface.
JavaScript
183
star
27

battletest

A CLI module for npm that auto-generates tests based on user specified parameters.
JavaScript
183
star
28

Deno-Redlock

Deno's first lightweight, secure distributed lock manager utilizing the Redlock algorithm
TypeScript
182
star
29

ReactMonitor

Quickly visualize React's component tree and its performance
JavaScript
181
star
30

Osiris

An Electron based desktop application for generating components, building pages, and storing them in a UI library.
JavaScript
177
star
31

protostar-relay

Open-source iteration of the official Relay devtool.
JavaScript
171
star
32

TorchQL

A tool to quickly generate GraphQL schemas and resolvers from a relational database
JavaScript
171
star
33

trydent

testing tamed
TypeScript
170
star
34

genesisQL

rapid schema-prototyping tool for GraphQL applications
JavaScript
169
star
35

FilamentQL

GraphQL query and caching solution
JavaScript
168
star
36

GatsbyHub

Access everything Gatsby has to offer without ever leaving Visual Studio Code. This VSCode Extension allows you to generate a new Gatsby site using a starter, browse Gatsby plugins, and develop a server all with a click of a button.
TypeScript
163
star
37

aditum

Accessibility components for managing focus in React SPAs
JavaScript
162
star
38

watchmo

JavaScript
162
star
39

react-chronoscope

Developer tool to monitor React performance
JavaScript
162
star
40

navigate

A Kubernetes cluster visualizer for DevOps engineers - network policies, aggregated scheduler logs, deployments and pods before your cluster is running!
TypeScript
161
star
41

TrunQ

NPM package for easy client and/or server side graphQL caching.
JavaScript
160
star
42

onyx

Onyx is authentication middleware for Deno, inspired by Passport.js
TypeScript
159
star
43

BACE

JavaScript
159
star
44

MASH

Kafka visualizer and management suite
TypeScript
158
star
45

portara

Portara directive is a rate limiter / throttler for GraphQL
TypeScript
158
star
46

irisql

GraphQL prototyping tool to quickly mock-up Node API's and visualize where you can query from.
JavaScript
158
star
47

Interspect

An API mocking tool for testing data interoperability between microservices and secure HTTP endpoints
JavaScript
157
star
48

SMEE

JavaScript
154
star
49

ChaosQoaLa

Chaos Engineering meets GraphQL
JavaScript
153
star
50

VaaS

Modular Kubernetes Management System with OpenFaaS Support
TypeScript
153
star
51

tropicRPC

A VS Code extension that provides gRPC API endpoint testing.
TypeScript
153
star
52

dashport

Local and OAuth authentication middleware for Deno
TypeScript
151
star
53

anagraphql

JavaScript
151
star
54

Trinity

A VSCode extension for Cypher and Neo4j
TypeScript
150
star
55

DockerLocal

DockerLocal is a GUI application that allows you to keep an up-to-date version of the docker compose file for interconnected repositories while doing development work on a single repository.
TypeScript
150
star
56

giraffeQL

🦒 Developer tool to visualize relational databases and export schemas for GraphQL API's.
JavaScript
147
star
57

ProtoCAD

ProtoCAD is a prototyping tool that allows developers to build UI component tree structure based on GraphQL query results.
TypeScript
146
star
58

Trace

A lightweight GraphQL query performance monitoring GUI with real-time, resolver-level performance tracing metrics and error logging.
TypeScript
146
star
59

StratosDB

☄️ ☁️ An All-in-One GUI for Cloud SQL that can help users design and test their AWS RDS Instances
TypeScript
145
star
60

snAppy

snAppy is a VS Code extension coupled with an interactive view to support your React front-end delivery.
TypeScript
144
star
61

synapse

Realtime API Library
TypeScript
144
star
62

SpectiQL

GraphQL query, mutation, subscription test generator
JavaScript
143
star
63

starfleet

Command line tool to generate GraphQL services from Mongoose schemas with full CRUD functionality and deploy them to the cloud
JavaScript
143
star
64

pelican

Automated GUI canary testing for your kubernetes clusters
JavaScript
140
star
65

ProtoNative

A React Native prototyping tool for developers.
TypeScript
140
star
66

reactFLO

A Chrome DevTool built for developers to visualize the flow of state throughout their application.
TypeScript
140
star
67

ReactionTime

ReactionTime provides a simpler way to write tests for React's Experimental Concurrent Mode.
TypeScript
140
star
68

DacheQL

GraphQL caching tool
JavaScript
139
star
69

KuberOptic

An Electron app for developers to visualize their Kubernetes clusters in real-time
TypeScript
137
star
70

sono.land

Real-time Communication Library for Deno (WebSockets & WebRTC)
TypeScript
137
star
71

KubeScrape

KubeScrape: An open-source dev tool that provides an intuitive way to view the health, structure, and live metrics of your Kubernetes cluster
JavaScript
136
star
72

LucidQL

A developer tool and visualizer that generates a GraphQL schema from an established relational database.
JavaScript
135
star
73

Hookd

A cli tool and visualizer for converting React class components to functional components with hooks.
TypeScript
135
star
74

kr8s

Docker/Kubernetes Visualization Tool
JavaScript
133
star
75

Svelcro

Svelte DevTool with a focus on rendering
JavaScript
133
star
76

KnightOwl

An npm package of GraphQL middleware to protect you from malicious queries.
JavaScript
133
star
77

Palaemon

Palaemon is an open-source developer tool for monitoring health and resource metrics of Kubernetes clusters and analyzing Out of Memory (OOMKill) errors
TypeScript
133
star
78

SvelTable

Feature rich data table component.
Svelte
132
star
79

Ekkremis

A periscopic view into pending Kubernetes pods
TypeScript
132
star
80

kQ

TypeScript
131
star
81

fflow

fflow is an easy-to-use open-source tool for all developers to create their React application.
JavaScript
127
star
82

KlusterView

Get instant insights on your Kubernetes clusters with our lightweight, plug-and-play performance monitoring tool
TypeScript
125
star
83

Aqls-server

An intelligent full-stack GraphQL subscription and analytics module. Server-side analytics processing, self-auditing router, and resolver plugins.
JavaScript
123
star
84

kondo

JavaScript
123
star
85

periqles

React form library for Relay and Apollo
JavaScript
120
star
86

ThermaKube

A web application that monitors the health and performance of Kubernetes clusters with support for AWS EKS deployments
JavaScript
120
star
87

arteMetrics

Creating performance monitors for Apollo implementations of graphQL.
JavaScript
118
star
88

QLens

QLens is an electron app which dynamically generates GraphQL Schemas and Mongo Schema visualization. QLens significantly cuts development time by automating the formation of their GraphQL schemas based on information fetched from their non-relational database.
JavaScript
118
star
89

firecomm

A complete framework for gRPC-node.
JavaScript
117
star
90

Kafkasocks

JavaScript
114
star
91

ReaPer

Dev tool to analyze the performance of user interface and single-page applications based on the React frontend library
JavaScript
114
star
92

dangoDB

A MongoDB ODM for Deno
TypeScript
111
star
93

AtomicKafka

JavaScript
110
star
94

Bedrock

A modular authentication library for Deno.
TypeScript
110
star
95

Docklight

Metrics for your Docker containers
TypeScript
109
star
96

Neptune

A light-weight, simple, and straightforward learning tool for your Kubernetes cluster
JavaScript
109
star
97

ArtemisQL

ArtemisQL is a GraphQL migration tool and database visualizer that empowers developers to build and implement GraphQL with ease.
TypeScript
108
star
98

shipm8

JavaScript
108
star
99

ReacTree

ReacTree - VS Code extension that generates a hierarchy tree of React components with each node listing the passed down props, indicating whether it's connected the Redux store, and guiding you to the associated file with the click of a button
TypeScript
107
star
100

reactron

Reactron is a React component visualizer that allows you to traverse an app's fiber tree and render components individually.
JavaScript
105
star