node-json-socket
node-json-socket copied to clipboard
Hi i have implemented server like below in 10 different machines. and i can see "connected jsonsocketserver" getting printed in all machines when client connects but not receiving on "message"...
I'm using Nodejs' core sockets to send some Json files, the code bellow is just the server connection handler and when this code run I've got a weird exception that...
The JsonSocket class doesn't inherit from EventEmitter like the standard net.Socket class does, which means that certain functions like `once` are unavailable.
@sebastianseilund awesome library! Eventually I would like to use this for voice and screen sharing, but not sure how TCP will perform. I was just wondering if you have given...
If multibyte unicode character packet is truncated, This code cannot handle it properly. Here is exploit code. ``` Javascript var net = require("net"); var client = new net.Socket(); client.setNoDelay(true); client.connect(9838,...
Would be nice to be able to destroy the socket if you need to. something like destroy: function(){ this._socket.destroy(); },