Skip to content

Instantly share code, notes, and snippets.

@lastlegion
Created November 15, 2014 04:55
Show Gist options
  • Save lastlegion/257b043ba5f5900cecf9 to your computer and use it in GitHub Desktop.
Save lastlegion/257b043ba5f5900cecf9 to your computer and use it in GitHub Desktop.
io.on("connection", function (socket){
t.on("tweet", function(tweet){
var tweetText = tweet.text;
var score = s.score(tweetText);
socket.emit("tweet", {tweet: tweetText, score:score})
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment