New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@join-com/grpc-ts

Package Overview
Dependencies
Maintainers
6
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@join-com/grpc-ts - npm Package Compare versions

Comparing version 1.1.0-pre1 to 1.1.0

11

lib/Service.js

@@ -34,3 +34,9 @@ "use strict";

logData.request = !definition.requestStream ? call.request : 'STREAM';
logData.response = !definition.responseStream ? result : 'STREAM';
const data = !definition.responseStream ? result : 'STREAM';
if (result instanceof Error) {
logData.error = data;
}
else {
logData.response = data;
}
logger.info(`GRPC ${logData.path}`, logData);

@@ -62,2 +68,5 @@ };

catch (e) {
if (logger) {
logging(logger, definition, call, e);
}
handleError(e, callback);

@@ -64,0 +73,0 @@ }

10

package.json
{
"name": "@join-com/grpc-ts",
"version": "1.1.0-pre1",
"version": "1.1.0",
"description": "grpc typescript wrapper",

@@ -42,14 +42,14 @@ "main": "./lib/index.js",

"@types/jest": "^23.3.10",
"@types/node": "^10.12.10",
"@types/node": "^10.12.18",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"jest-watch-typeahead": "^0.2.0",
"prettier": "^1.15.2",
"prettier": "^1.15.3",
"protobufjs": "^6.8.8",
"ts-jest": "^23.10.5",
"typescript": "^3.2.1"
"typescript": "^3.2.2"
},
"dependencies": {
"grpc": "^1.16.0"
"grpc": "^1.17.0"
}
}

Sorry, the diff of this file is not supported yet

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