A simple prototype to test out SockJS w/Redis pub/sub for a scalable push channel
brew install node
brew install redis
curl http://npmjs.org/install.sh | sh
npm install redis
npm install sockjs
npm install node-static
redis-server
node notification.js
http://localhost:8000
Either from each client or via the API
curl -X POST -d "uid=1234" -d "msg=hello to 1234" http://localhost:8001
curl -X POST -d "msg=hello to all" http://localhost:8001