grpc-node/packages/grpc-js-xds
Sergii Tkachenko ade39e8baa PSM Interop: Migrate to Artifact Registry
Migrate PSM Interop images from Container Registry (gcr.io) to
Artifact Registry (pkg.dev).
2024-04-08 16:13:44 -07:00
..
deps grpc-js-xds: Update envoy-api dep to match grpc/grpc reference 2024-02-13 11:12:09 -08:00
interop Copy proto-loader from build image to final image 2024-03-28 10:35:57 -07:00
proto/grpc/testing grpc-js-xds: Add unit test framework 2023-03-10 11:47:13 -08:00
scripts PSM Interop: Migrate to Artifact Registry 2024-04-08 16:13:44 -07:00
src grpc-js-xds: Implement EDS dualstack support 2024-02-13 14:02:50 -08:00
test Merge 1.9.x into master 2024-01-17 14:28:31 -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/grpc-js-xds: Update to 1.9.0, and update READMEs 2023-07-31 16:55:27 -07:00
gulpfile.ts grpc-js-xds: Add support for pick_first in xDS config 2023-09-13 14:27:25 -07:00
package.json grpc-js-xds: use local proto-loader, build proto-loader in interop Dockerfile 2024-03-27 11:10:14 -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.9.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