grpc-node/packages/grpc-js-xds
Michael Lumish c953a0e212 refactor part of xds-client into seprate files 2021-02-12 13:37:52 -08:00
..
deps grpc-js: Separate xds code into a separate plugin package 2020-10-21 13:45:22 -07:00
interop grpc-js: Separate xds code into a separate plugin package 2020-10-21 13:45:22 -07:00
proto/grpc/testing grpc-js: Separate xds code into a separate plugin package 2020-10-21 13:45:22 -07:00
scripts Fix a directory error in the xds script 2020-10-22 13:14:13 -07:00
src refactor part of xds-client into seprate files 2021-02-12 13:37:52 -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 Add grpc-js-xds README 2020-10-21 14:06:14 -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 Bump grpc-js-xds to 1.2.1 2021-01-27 14:02:41 -08: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