Skip to content

Instantly share code, notes, and snippets.

@jevinskie
Created November 7, 2010 21:03
Show Gist options
  • Save jevinskie/666786 to your computer and use it in GitHub Desktop.
Save jevinskie/666786 to your computer and use it in GitHub Desktop.
socket.on('connection', function(client){
console.log('got client: ' + client);
var stream = fs.createReadStream('starwars.txt', {encoding: 'utf8'});
framer(stream, 14); // 14 lines per frame
stream.on('frame', function(frame, repeat){
console.log('got frame!');
client.send(frame);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment