Skip to content

Instantly share code, notes, and snippets.

@staltz
staltz / introrx.md
Last active October 21, 2025 16:32
The introduction to Reactive Programming you've been missing
@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, {