grpc-node/packages/grpc-js-xds
Sergii Tkachenko d2a3ef45c0
grpc-js-xds: Bump the canonical server from v1.46.x to v1.56.0
Similar to https://github.com/grpc/grpc/pull/33542.

Note that there's a ticket to automatically use the one specified in the `--server_image_canonical` flag, but for now we just hardcode.
2023-06-28 13:55:27 -07:00
..
deps grpc-js-xds: Update envoy submodule, generate CSDS code 2021-12-02 16:14:03 -05:00
interop Use entrypoint /nodejs/bin/node 2023-06-23 09:34:29 -07:00
proto/grpc/testing grpc-js-xds: Add unit test framework 2023-03-10 11:47:13 -08:00
scripts grpc-js-xds: Bump the canonical server from v1.46.x to v1.56.0 2023-06-28 13:55:27 -07:00
src Newlines at ends of files 2023-06-21 11:25:46 -07:00
test Newlines at ends of files 2023-06-21 11:25:46 -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: Prepare for 1.8.0 release 2022-12-01 16:02:45 -05:00
gulpfile.ts grpc-js: Implement federation support 2023-04-20 10:40:01 -07:00
package.json grpc-js-xds: Complete federation implementation 2023-06-14 14:04:00 -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