grpc-node/packages/grpc-js-xds
Sergii Tkachenko 594933aa2b xDS interop: enable pod log collection in the buildscripts
- Enables pod log collection in all PSM interop jobs implemented
  in https://github.com/grpc/grpc/pull/30594.
- Associate test suite runs with their own log file, so it's displayed
  on the "Target Log" tab
- Adds missing `--force_cleanup` to the lb test (reduces leaked
  resources)
- Fix run_test not returning correct exit status, causing false
  positives in some cases. See https://github.com/grpc/grpc/pull/30768
2022-08-26 17:51:34 -07:00
..
deps grpc-js-xds: Update envoy submodule, generate CSDS code 2021-12-02 16:14:03 -05:00
interop grpc-js: Add outlier detection tracing and enable it in interop tests 2022-08-02 11:02:02 -07:00
proto/grpc/testing grpc-js-xds: Add functionality to the xDS interop client 2021-03-12 14:59:01 -08:00
scripts xDS interop: enable pod log collection in the buildscripts 2022-08-26 17:51:34 -07:00
src grpc-js-xds: Use authority override to select VirtualHost when provided 2022-08-25 14:22:00 -07: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 Update version to 1.6.0 2022-03-29 00:15:49 -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: Don't stop backoff timers for ADS streams 2022-04-01 10:46:39 -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