grpc-node/packages/grpc-js-xds
Michael Lumish 040ac9364f Backport xDS k8s interop docker image to version branch 2022-07-07 15:01:56 -07:00
..
deps grpc-js: Separate xds code into a separate plugin package 2020-10-21 13:45:22 -07:00
interop Backport xDS k8s interop docker image to version branch 2022-07-07 15:01:56 -07:00
proto/grpc/testing grpc-js-xds: Add functionality to the xDS interop client 2021-03-12 14:59:01 -08:00
scripts Backport xDS k8s test scripts to the v1.3.x branch 2022-06-28 14:12:43 -07:00
src grpc-js-xds: Handle all ways control-plane streams can end 2021-09-30 11:50:47 -07:00
test Add a simple test for the xds package to the test job 2020-10-23 14:57:18 -07:00
.eslintrc.json Move grpc-js xDS features into a separate package 2020-10-12 10:23:03 -07:00
.prettierrc.js Move grpc-js xDS features into a separate package 2020-10-12 10:23:03 -07:00
README.md grpc-js: Update versions and xDS feature list 2021-04-14 14:58:36 -07:00
gulpfile.ts Add a simple test for the xds package to the test job 2020-10-23 14:57:18 -07:00
package.json grpc-js-xds: Bump to 1.3.2 2021-09-30 13:24:29 -07:00
tsconfig.json Add a simple test for the xds package to the test job 2020-10-23 14:57:18 -07:00

README.md

@grpc/grpc-js xDS plugin

This package provides support for the xds:// URL scheme to the @grpc/grpc-js library. The latest version of this package is compatible with @grpc/grpc-js version 1.2.x.

Installation

npm install @grpc/grpc-js-xds

Usage

import * as grpcJsXds from '@grpc/grpc-js-xds';
grpcJsXds.register();

// ...get a @grpc/grpc-js Client class as usual

const client = new MyServiceClient('xds:///example.com:123');

Supported Features