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

gracenode

Package Overview
Dependencies
Maintainers
1
Versions
381
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gracenode - npm Package Compare versions

Comparing version 3.9.25 to 3.9.26

2

package.json
{
"name": "gracenode",
"description": "A node.js framework for real-time applications over UDP and TCP protocols with extendable modules for quick and clean evelopment.",
"version": "3.9.25",
"version": "3.9.26",
"author": "Nobuyori Takahashi <voltrue2@yahoo.com>",

@@ -6,0 +6,0 @@ "repository": {

@@ -8,3 +8,3 @@ 'use strict';

port: 7050,
manualStart: true
manualStart: false
},

@@ -15,2 +15,3 @@ cluster: { max: 2 }

.then(() => {
/*
gn.manualStart([ gn.http ], (err) => {

@@ -21,2 +22,3 @@ if (err) {

});
*/
})

@@ -23,0 +25,0 @@ .catch((error) => {

@@ -140,6 +140,10 @@ 'use strict';

if (error) {
bind.cb(error);
if (bind.cb) {
bind.cb(error);
}
return;
}
bind.cb();
if (bind.cb) {
bind.cb();
}
}

@@ -146,0 +150,0 @@

@@ -669,2 +669,3 @@ 'use strict';

STATUS: transport.STATUS,
paused: false,
command: 0,

@@ -671,0 +672,0 @@ payload: null,

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