Socket
Socket
Sign inDemoInstall

node-ipc

Package Overview
Dependencies
Maintainers
12
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-ipc - npm Package Compare versions

Comparing version 9.2.0 to 9.2.1

4

dao/socketServer.js

@@ -313,4 +313,4 @@ 'use strict';

path: this.path,
readableAll: true,
writableAll: true
readableAll: this.config.readableAll,
writableAll: this.config.writableAll
}, this.onStart.bind(this));

@@ -317,0 +317,0 @@

@@ -50,2 +50,5 @@ 'use strict';

this.readableAll = false;
this.writableAll = false;
this.interface={

@@ -52,0 +55,0 @@ localAddress:false,

{
"name": "node-ipc",
"version": "9.2.0",
"version": "9.2.1",
"description": "A nodejs module for local and remote Inter Process Communication (IPC), Neural Networking, and able to facilitate machine learning.",

@@ -19,4 +19,4 @@ "main": "node-ipc.js",

"codacy-coverage": "2.0.0",
"istanbul": "0.4.1",
"jasmine": "2.4.1",
"istanbul": "0.4.1",
"node-cmd": "2.0.0"

@@ -23,0 +23,0 @@ },

@@ -99,2 +99,4 @@ node-ipc

networkPort : 8000,
readableAll : false,
writableAll : false,
encoding : 'utf8',

@@ -131,2 +133,4 @@ rawBuffer : false,

| networkPort| the default port on which TCP, TLS, or UDP sockets should connect |
| readableAll| makes the pipe readable for all users including windows services |
| writableAll| makes the pipe writable for all users including windows services |
| encoding | the default encoding for data sent on sockets. Mostly used if rawBuffer is set to true. Valid values are : ` ascii` ` utf8 ` ` utf16le` ` ucs2` ` base64` ` hex ` . |

@@ -133,0 +137,0 @@ | rawBuffer| if true, data will be sent and received as a raw node ` Buffer ` __NOT__ an ` Object ` as JSON. This is great for Binary or hex IPC, and communicating with other processes in languages like C and C++ |

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