Socket
Socket
Sign inDemoInstall

dnode

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dnode - npm Package Compare versions

Comparing version 0.9.1 to 0.9.2

17

index.js

@@ -135,3 +135,2 @@ var net = require('net');

if (params.port) {
params.host = params.host || '127.0.0.1';
if (params.key) {

@@ -147,6 +146,14 @@ var options = {

server.on('error', this.emit.bind(this, 'error'));
server.listen(
params.port, params.host,
this.emit.bind(this, 'ready')
);
if (params.host) {
server.listen(
params.port, params.host,
this.emit.bind(this, 'ready')
);
}
else {
server.listen(
params.port,
this.emit.bind(this, 'ready')
);
}
}

@@ -153,0 +160,0 @@ else {

{
"name" : "dnode",
"version" : "0.9.1",
"version" : "0.9.2",
"description" : "freestyle RPC",

@@ -5,0 +5,0 @@ "main" : "./index.js",

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