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

pm2-axon-rpc

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pm2-axon-rpc - npm Package Compare versions

Comparing version 0.4.3 to 0.4.4

12

lib/server.js

@@ -95,9 +95,9 @@

args.push(function(err){
if (err) return reply({ error: err.message, stack: err.stack });
if (err) {
if (err instanceof Error)
return reply({ error: err.message, stack: err.stack });
else
return reply({error : err});
}
var args = [].slice.call(arguments, 1);
args.forEach(function(arg, i) {
args[i] = clone(arg);
});
reply({ args: args });

@@ -104,0 +104,0 @@ });

{
"name": "pm2-axon-rpc",
"version": "0.4.3",
"version": "0.4.4",
"description": "Remote procedure calls built on top of axon.",

@@ -5,0 +5,0 @@ "keywords": [

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