Net Socket IO
Net-Socket.IO enables real-time, bidirectional and event-based communication for low-level IPC and TCP sockets. It is a small wrapper around node's net
library, that makes low-level socket programming easy.
Heavily Based on socket.io and Event Emitters.
For more information on the motivation behind this library, check out my blog post on the subject.
Examples
server
const Server = ;const socketFile = '/tmp/socket'; // file for IPC socket, or port number for TCP socket.const io = ; io;
client
const Socket = ;const socketFile = '/tmp/socket';const socket = ; socket;
Look in the examples folder for complete examples.
Documentation
Check out the API documentation for more details.