Comparing version 1.2.0 to 1.2.1
{ | ||
"name": "node-ipc", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "A nodejs module for local and remote Inter Process Communication (IPC), Neural Networking, and able to facilitate machine learning.", | ||
@@ -5,0 +5,0 @@ "main": "node-ipc.js", |
@@ -65,3 +65,3 @@ node-ipc | ||
id : os.hostname(), | ||
networkHost : 'localhost', | ||
networkHost : '127.0.0.1', //we use this instead of localhost as default because windows without network connection turns dns off and is unable to find localhost like other... smarter... OSes | ||
networkPort : 8000, | ||
@@ -279,3 +279,3 @@ encoding : 'utf8', | ||
|----------|----------|------------| | ||
| host | optional | If not specified this defaults to localhost. For TCP, TLS & UDP servers this is most likely going to be localhost or 0.0.0.0 unless you have something like [node-http-server](https://github.com/RIAEvangelist/node-http-server) installed to run subdomains for you. | | ||
| host | optional | If not specified this defaults to 127.0.0.1. For TCP, TLS & UDP servers this is most likely going to be 127.0.0.1 or 0.0.0.0 unless you have something like [node-http-server](https://github.com/RIAEvangelist/node-http-server) installed to run subdomains for you. | | ||
| port | optional | The port on which the TCP, UDP, or TLS Socket server will be bound, this defaults to 8000 if not specified | | ||
@@ -465,3 +465,3 @@ | UDPType | optional | If set this will create the server as a UDP socket. 'udp4' or 'udp6' are valid values. This defaults to not being set. | ||
{ | ||
address : 'localhost', | ||
address : '127.0.0.1', //any hostname will work | ||
port : ipc.config.networkPort | ||
@@ -468,0 +468,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
85163