grpc-node/packages/grpc-js-xds
Lidi Zheng a000d67a88 Use xds-test-server-5 as interop server image 2021-12-29 12:03:24 -08:00
..
deps grpc-js-xds: Update deps and generated code for xDS v3 2021-04-14 14:00:16 -07:00
interop grpc-js-xds: fix use of splice in interop test code 2021-09-16 14:48:06 -07:00
proto/grpc/testing grpc-js-xds: Add functionality to the xDS interop client 2021-03-12 14:59:01 -08:00
scripts Use xds-test-server-5 as interop server image 2021-12-29 12:03:24 -08:00
src grpc-js-xds: Remove LDS and CDS code for removing RDS and EDS entries 2021-11-18 12:48:40 -08: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-xds: Update readme feature list 2021-08-31 11:53:15 -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: Update package versions for 1.4.0 release 2021-10-11 14:23:05 -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