load(importPaths: string[], ...filenames: string[]): void
Parameter | Type | Description |
importPaths | string[] | Used to search for dependency paths referenced in import statements of proto source files; if no import path is provided, the current directory is assumed to be the only import path. |
...filenames | string[] | The list of pb file names, supports calling with a single file name. |
Type | Description |
void | No content returned. |
import grpc from 'pts/grpc';const client = new grpc.Client();// Load the addsvc.proto file from the root directory of the protocol file.client.load([], 'addsvc.proto');
import grpc from 'pts/grpc';const client = new grpc.Client();// Load the addsvc.proto and example.proto files from the dirName directory of the protocol file.client.load(['dirName'], 'addsvc.proto', 'example.proto');