grpc-node/packages/grpc-js-xds
Michael Lumish a188ae1681 grpc-js: Add backoff timer trace logging 2025-03-07 14:47:18 -08:00
..
deps grpc-js-xds: Implement XdsServerCredentials 2024-10-08 15:52:11 -07:00
interop grpc-js: Add backoff timer trace logging 2025-03-07 14:47:18 -08:00
proto/grpc/testing grpc-js-xds: Add unit test framework 2023-03-10 11:47:13 -08:00
scripts grpc-js-xds: Install new dependencies in legacy interop script 2025-02-06 16:44:26 -08:00
src grpc-js-xds: ring_hash: Fix proactive connect logic when already connecting 2025-03-04 14:44:57 -08:00
test Handle secure context errors, fix server constructor argument handling 2025-02-26 16:24:29 -08: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 to 1.13.0 2025-03-03 15:58:43 -08:00
gulpfile.ts Add xds credentials tests 2024-10-14 11:13:54 -07:00
package.json grpc-js: Update to 1.13.0 2025-03-03 15:58:43 -08: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.13.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