Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grpc-ts-middleware

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grpc-ts-middleware

gRPC pre-call and post-call middleware

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

gRPC Middleware

Current Version

A library that assists with the implementation of gRPC pre-, and post-call middleware.

Installation

npm install grpc-ts-middleware --save

Dependencies

  • gRPC: Node.js gRPC Library.

Usage

import * as grpc from 'grpc';
import GrpcMiddleware, { GrpcCall } from 'grpc-ts-middleware';

import { EchoReply, EchoRequest } from './proto/echo_pb';
import { EchoManagerService } from './proto/echo_grpc_pb';

function doEcho(call: grpc.ServerUnaryCall<EchoRequest>, callback: grpc.sendUnaryData<EchoReply>) {
	const reply = new EchoReply();
	reply.setMessage(call.request.getMessage());
	callback(null, reply);
}

function start(): grpc.Server {
	// Create the server
	const server: grpc.Server = new grpc.Server();

	// Create the middleware object
	const grpcMiddleware = new GrpcMiddleware(
		// An instance of the gRPC server
		server,
		// An array of functions to be invoked prior to the execution of the gRPC call
		[
			(call: GrpcCall) => console.log('Pre-call handler 1', call),
			(call: GrpcCall) => console.log('Pre-call handler 2', call)
		],
		// An array of functions to be invoked after the gRPC call has been executed, but before returning the result
		[
			(error: grpc.ServiceError | null, call: GrpcCall) =>
				console.log('Post-call handler 1', call, error),
			(error: grpc.ServiceError | null, call: GrpcCall) =>
				console.log('Post-call handler 2', call, error)
		]
	);
	// Add gRPC services that you want the middleware to monitor
	grpcMiddleware.addService(EchoManagerService, { echo: doEcho });
	// Enable propagation of Jaeger tracing headers
	grpcMiddleware.enableTracing();

	// Bind and start the server
	server.bind('localhost:9090', grpc.ServerCredentials.createInsecure());
	server.start();

	return server;
}

start();

Keywords

FAQs

Package last updated on 21 Dec 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc