mirror of https://github.com/grpc/grpc-node.git
				
				
				
			|  | ||
|---|---|---|
| .. | ||
| bin | ||
| deps | ||
| src | ||
| CMakeLists.txt | ||
| LICENSE | ||
| README.md | ||
| build_binaries.ps1 | ||
| build_binaries.sh | ||
| copy_well_known_protos.js | ||
| index.js | ||
| linux_32bit.toolchain.cmake | ||
| linux_64bit.toolchain.cmake | ||
| package.json | ||
		
			
				
				README.md
			
		
		
			
			
		
	
	grpc-tools
This package distributes the Protocol Buffers compiler protoc along with the
plugin for generating client and service objects for use with the Node gRPC
libraries.
Usage
This library exports the grpc_tools_node_protoc executable, which accepts all
of the same arguments as protoc itself. For use with Node, you most likely
want to use CommonJS-style imports. An example of generating code this way can
be found in this guide.
The grpc_tools_node_protoc automatically includes the Node gRPC plugin, so
it also accepts the --grpc_out=[option:]path argument. The option can be
one of the following:
- grpc_js: Generates code with- require('@grpc/grpc-js')instead of- require('grpc')
- generate_package_definition: Generates code that does not- requireany gRPC library, and instead generates- PackageDefinitionobjects that can be passed to the- loadPackageDefinitionfunction provided by both the- grpcand- @grpc/grpc-jslibraries.