grpc-node/packages/grpc-js-xds
Michael Lumish 2ee8911dc4 grpc-js: Bump packages to 1.11.0, and update documentation 2024-07-15 11:00:25 -07:00
..
deps grpc-js-xds: Update envoy-api dep to match grpc/grpc reference 2024-02-13 11:12:09 -08:00
interop Merge remote-tracking branch 'upstream/@grpc/grpc-js@1.10.x' into grpc-js_1.10.x_upmerge 2024-05-28 13:34:05 -07:00
proto/grpc/testing grpc-js-xds: Add unit test framework 2023-03-10 11:47:13 -08:00
scripts Merge pull request #2729 from sergiitk/psm-interop-common-prod-tests 2024-05-06 15:26:17 -07:00
src Merge branch 'master' into grpc-js-xds_server2 2024-07-01 11:19:12 -07:00
test Merge branch 'master' into grpc-js-xds_server2 2024-07-01 11:19:12 -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: Bump packages to 1.11.0, and update documentation 2024-07-15 11:00:25 -07:00
gulpfile.ts grpc-js-xds: De-experimentalize tested features and update feature list 2024-02-01 13:25:38 -08:00
package.json grpc-js: Bump packages to 1.11.0, and update documentation 2024-07-15 11:00:25 -07:00
tsconfig.json grpc-js-xds: Implement ring_hash LB policy 2023-09-07 17:14:39 -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.10.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