mirror of https://github.com/grpc/grpc-node.git
|
||
---|---|---|
.. | ||
deps | ||
interop | ||
proto/grpc/testing | ||
scripts | ||
src | ||
test | ||
.eslintrc.json | ||
.prettierrc.js | ||
README.md | ||
gulpfile.ts | ||
package.json | ||
tsconfig.json |
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');