hello-twitter

websockets demo implementations with twitter stream api

Stars
9
Committers
1

WebSockets in practice

This GitHub repository aims to regroup some implementations of the same application based on WebSockets.

As a Java specialist, most of the chosen implementations are in Java but I've added the node.js / Socket.IO implementation as sort of reference.

Hello Twitter

The application each implementation is targeting is very simple and based on the Twitter Streaming API.

The text field on top of the column is for entering a search query, when the user push enter, the query is sent through the WebSocket to the server which will open the stream on this filter. On each tweets from the stream, the server will push it to its client which will show it in the main column.

The Web part is almost the same in each example and heavily inspired by Bodil Stokke @bodiltv and her talk about Backbone.JS at Mix IT 2012. The node.js implementation as well.

##Implementations

These are all the implementation I first planned to make but it's possible to add one or another if asked or needed.