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

grpc-express

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grpc-express - npm Package Compare versions

Comparing version 1.0.0-beta to 1.0.1-beta

4

index.js

@@ -43,3 +43,3 @@ const debug = require('debug')('grpc-express');

)
].forEach(route => {
].filter(r => r).forEach(route => {
const keys = routeToPathKeys(route);

@@ -64,3 +64,3 @@ this._unaryCalls.set(keys.lower, keys.name);

)
].forEach(route => {
].filter(r => r).forEach(route => {
const keys = routeToPathKeys(route);

@@ -67,0 +67,0 @@ this._serverStreamCalls.set(keys.lower, keys.name);

{
"name": "grpc-express",
"version": "v1.0.0-beta",
"version": "v1.0.1-beta",
"description": "gRPC express based web proxy",

@@ -35,12 +35,12 @@ "main": "index.js",

"chai": "^4.1.2",
"express": "^4.16.2",
"mocha": "^5.0.2",
"node-fetch": "^2.1.1",
"nyc": "^11.4.1"
"express": "^4.16.3",
"mocha": "^5.1.1",
"node-fetch": "^2.1.2",
"nyc": "^11.7.3"
},
"dependencies": {
"debug": "^3.1.0",
"grpc": "^1.9.1",
"rc": "^1.2.5"
"grpc": "^1.11.3",
"rc": "^1.2.7"
}
}

@@ -18,3 +18,3 @@ # grpc-express

* [gRPC-gateway](https://github.com/grpc-ecosystem/grpc-gateway): requires `.proto` modification
* [grpc-bus-websocket-proxy-server](https://github.com/gabrielgrant/grpc-bus-websocket-proxy-server): as of writing this document it lacks tests and seems abandoned
* [grpc-bus-websocket-proxy-server](https://github.com/gabrielgrant/grpc-bus-websocket-proxy-server): as of writing this document it lacks tests

@@ -21,0 +21,0 @@ On the other hand, Express middlewares are easy to use and the chance that your app already ships with Express is extremely high! Also it's NodeJS only and requires no additional setups in client or server side.

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