grpc-node/packages/grpc-js-xds
Michael Lumish 9214988c45
Merge pull request #2280 from murgatroid99/grpc-js-xds_retry
grpc-js-xds: Implement retry support
2022-11-30 10:04:47 -08:00
..
deps grpc-js-xds: Update envoy submodule, generate CSDS code 2021-12-02 16:14:03 -05:00
interop grpc-js-xds: interop: Fix timestamp handling when config changes 2022-11-14 09:50:33 -08:00
proto/grpc/testing grpc-js-xds: Add functionality to the xDS interop client 2021-03-12 14:59:01 -08:00
scripts grpc-js-xds: interop: Fix target directory for profile log 2022-11-09 10:08:47 -08:00
src Merge pull request #2280 from murgatroid99/grpc-js-xds_retry 2022-11-30 10:04:47 -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 outlier detection entry in README 2022-09-07 13:13:50 -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: Delete generated code for xDS v2 2022-10-12 13:48:16 -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