diff --git a/index.html b/index.html index 747edd4..be29e05 100644 --- a/index.html +++ b/index.html @@ -32,7 +32,7 @@

-node-ipc

+node-ipc

a nodejs module for local and remote Inter Process Communication for Linux, Mac and Windows.
A great solution for Neural Networking in Node.JS

@@ -55,7 +55,7 @@ A great solution for Neural Networking in Node.JS


-Contents

+Contents
  1. Types of IPC Sockets and Supporting OS
  2. @@ -87,7 +87,7 @@ A great solution for Neural Networking in Node.JS


    -Types of IPC Sockets

    +Types of IPC Sockets @@ -228,14 +228,14 @@ A great solution for Neural Networking in Node.JS


    -IPC Methods

    +IPC Methods

    These methods are available in the IPC Scope.


    -log
    +log

    ipc.log(a,b,c,d,e...);

    @@ -270,7 +270,7 @@ colors.setTheme(
    -connectTo
    +connectTo

    ipc.connectTo(id,path,callback);

    @@ -347,7 +347,7 @@ colors.setTheme(
    -connectToNet
    +connectToNet

    ipc.connectToNet(id,host,port,callback)

    @@ -424,7 +424,7 @@ So while the default is : (id,host,port,callback), the following examples will s
    -disconnect
    +disconnect

    ipc.disconnect(id)

    @@ -455,7 +455,7 @@ So while the default is : (id,host,port,callback), the following examples will s
    -serve
    +serve

    ipc.serve(path,callback);

    @@ -514,7 +514,7 @@ So while the default is : (id,host,port,callback), the following examples will s
    -serveNet
    +serveNet

    serveNet(host,port,UDPType,callback)

    @@ -608,7 +608,7 @@ So while the default is : (id,host,port,callback), the following examples will s

    -IPC Stores and Default Variables

    +IPC Stores and Default Variables
    @@ -633,12 +633,12 @@ So while the default is : (id,host,port,callback), the following examples will s

    -Basic Examples

    +Basic Examples

    You can find Advanced Examples in the examples folder. In the examples you will find more complex demos including multi client examples.

    -Server for Unix Sockets & TCP Sockets

    +Server for Unix Sockets & TCP Sockets

    The server is the process keeping a socket for IPC open. Multiple sockets can connect to this server and talk to it. It can also broadcast to all clients or emit to a specific client. This is the most basic example which will work for both local Unix Sockets and local or remote network TCP Sockets.

    @@ -666,7 +666,7 @@ ipc.server.start();

    -Client for Unix Sockets & TCP Sockets

    +Client for Unix Sockets & TCP Sockets

    The client connects to the servers socket for Inter Process Communication. The socket will recieve events emitted to it specifically as well as events which are broadcast out on the socket by the server. This is the most basic example which will work for both local Unix Sockets and local or remote network TCP Sockets.

    @@ -705,7 +705,7 @@ ipc.connectTo(

    -Server & Client for UDP Sockets

    +Server & Client for UDP Sockets

    UDP Sockets are different than Unix & TCP Sockets because they must be bound to a unique port on their machine to recieve messages. For example, A TCP or Unix Socket client could just connect to a seperate TCP or Unix Socket sever. That client could then exchange, both send and recive, data on the servers port or location. UDP Sockets can not do this. They must bind to a port to recieve or send data.

    @@ -714,7 +714,7 @@ ipc.connectTo(

    This is the most basic example which will work for both local Unix Sockets and local or remote network TCP Sockets.

    -UDP Server 1 - "World"
    +UDP Server 1 - "World"
    var ipc=require('../../../node-ipc');
     
    @@ -750,7 +750,7 @@ ipc.server.start();
     
    -UDP Server 2 - "Hello"
    +UDP Server 2 - "Hello"

    note we set the port here to 8001 because the world server is already using the default ipc.config.networkPort of 8000. So we can not bind to 8000 while world is using it.

    @@ -793,7 +793,7 @@ ipc.server.start(); diff --git a/stylesheets/stylesheet.css b/stylesheets/stylesheet.css index 7a08b01..619d19d 100644 --- a/stylesheets/stylesheet.css +++ b/stylesheets/stylesheet.css @@ -201,12 +201,14 @@ ul, ol, dl { } ul { - list-style: inside; + list-style-position: inside; + list-style: disc; padding-left: 20px; } ol { - list-style: decimal inside; + list-style-position: inside; + list-style: decimal; padding-left: 20px; }