Rx Intent A more convenient way to use Rx Subject usage var intent = new Intent('hello'); // intent.hellos is an instance of Rx.Observableintent.hellos.subscribe(function (name) { console.log('hello %s', name);}) intent.hello('world');> hello world