0.0.4 • Published 9 years ago

eventtcp v0.0.4

Weekly downloads
10
License
-
Repository
github
Last release
9 years ago

eventtcp

Build Status npm version

How to install

npm install eventtcp --save

eventtcp allows you to send events over the TCP socket.

How to use

var EventTCP = require('eventtcp').EventTCP;

//client side
var emitter = new EventTCP({
	port: 8080,
	host: 'localhost'
});

//server side
var server = net.createServer(function(socket) {
	var emitter = new EventTCP(socket);
});

License

MIT

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago