Skip to content

androidappteam/react-native-grpc

 
 

Repository files navigation

react-native-grpc

gRPC for react-native

Installation

npm install @krishnafkh/react-native-grpc

Usage

import { GrpcClient, GrpcMetadata } from '@krishnafkh/react-native-grpc';

GrpcClient.setHost('example.com');

// Bring your own protobuf library
// This example uses https://github.com/timostamm/protobuf-ts

const request = ExampleRequest.create({
  message: 'Hello World!',
});

const data: Uint8Array = ExampleRequest.toBinary(request);
const headers: GrpcMetadata = {};

const { response } = await GrpcClient.unaryCall(
  '/example.grpc.service.Examples/SendExampleMessage',
  data,
  headers
);

const responseMessage = ExampleMessage.fromBinary(response);

See examples project for more advanced usage.

Limitations

This library currently only supports unary and server-side streaming type RPC calls. PRs are welcome.

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT

About

gRPC for react-native

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 33.5%
  • TypeScript 33.1%
  • Objective-C 25.6%
  • Ruby 4.6%
  • JavaScript 2.7%
  • Shell 0.3%
  • C 0.2%