0.1.2 • Published 12 years ago

tcp.js v0.1.2

Weekly downloads
14
License
-
Repository
github
Last release
12 years ago

TCP.JS

tcp.js is a Node.js projet making TCP communication easy in node.js. It tries to level out the difference between and a client, making the communication more simple. It also has built-in JSON encoding/decoding.

How to Install

git clone https://github.com/kasmura/tcp.js.git

How to use

Server

var sockets = require('./tcp.js').server(1337);

sockets.on('connection', function (socket) {
  socket.send('news', { hello: 'world'});
  socket.on('myEvent', function (data) {
    console.log(data);
  });
});

Client

var sockets = require('./tcp.js').client('127.0.0.1', 1337);

sockets.on('connection', function(socket) {
  socket.on('news', function (data) {
    console.log(data);
    socket.send('myEvent', { my: 'data'});
  });    
});

Author

This library is developed by kasmura

His website is www.kasmura.com

License

NO RIGHTS RESERVED (ANTI-COPYRIGHT)

0.1.2

12 years ago

0.1.1

12 years ago

0.1.0

12 years ago