This package has been deprecated

Author message:

This package has been deprecated in favor of @improbable-eng/grpc-web-node-http-transport

grpc-web-node-http-transport
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

grpc-web-node-http-transport

Node HTTP Transport for use with grpc-web-client

Usage

When making a gRPC request, specify this transport:

import { grpc } from 'grpc-web-client';
import { NodeHttpTransport } from 'grpc-web-node-http-transport';
 
grpc.invoke(MyService.DoQuery, {
  host: "https://example.com",
  transport: NodeHttpTransport(),
  /* ... */
})

Alternatively specify the Default Transport when your server/application bootstraps:

import { grpc } from "grpc-web-client";
import { NodeHttpTransport } from "grpc-web-node-http-transport";
 
// Do this first, before you make any grpc requests!
grpc.setDefaultTransport(NodeHttpTransport());

Readme

Keywords

none

Package Sidebar

Install

npm i grpc-web-node-http-transport

Weekly Downloads

25

Version

0.0.1

License

Apache-2.0

Unpacked Size

21.4 kB

Total Files

8

Last publish

Collaborators

  • jonnyreeves