Gene Liu
Have you been itching to try out Node.JS for a real-time communication app? Perhaps a voice application? Or a SMS or IM agent?
I've been experimenting with binary streams in Node.js, and much to my amazement do actually have a working demo of taking a Shoutcast stream using node-radio-stream and pushing it into a HTML5 element using chunked encoding. But it only works in Safari! Here is my server code: var radio = require ( "radio-stream" ); var http = require ( 'http' ); var url = "http://67.205.85.183:7714" ; var stream = radio . createReadStream ( url ); var clients = []; stream console