UNPKG

@pionerlabs/grpc-interceptors

Version:

This library provides a way to instrument Node.js gRPC clients and servers with interceptors/middleware e.g. for Prometheus metrics, Zipkin tracing etc.

21 lines (13 loc) 270 B
.PHONY: clean install depcheck lint test all: clean depcheck lint test clean: rm -f package-lock.json install: package-lock.json depcheck: install npm run depcheck lint: install npm run lint test: install npm test package-lock.json: npm prune && npm install