Skip to content

Instantly share code, notes, and snippets.

@trxcllnt
Created November 23, 2013 05:11
Show Gist options
  • Save trxcllnt/7611075 to your computer and use it in GitHub Desktop.
Save trxcllnt/7611075 to your computer and use it in GitHub Desktop.
Browserify + Rx
// Have to do this to browserify Rx :/
window.global = window;
var Rx = require('rx');
Rx.Observable.interval(100).subscribe(function(i) {
console.log(i);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment