Skip to content

Instantly share code, notes, and snippets.

View JhonatanHern's full-sized avatar
🎯
Focusing

Jhonatan JhonatanHern

🎯
Focusing
View GitHub Profile
@dtrce
dtrce / mp3.js
Created September 8, 2011 18:39
streaming mp3 using nodejs
var http = require('http'),
fileSystem = require('fs'),
path = require('path')
util = require('util');
http.createServer(function(request, response) {
var filePath = 'path_to_file.mp3';
var stat = fileSystem.statSync(filePath);
response.writeHead(200, {