Rxjs 说,Rx.DOM 未定义

Rxjs says, Rx.DOM is undefined

我正在尝试简单的按键示例,

var input = document.getElementById('input');

var source = Rx.DOM.keypress(input);
var subscription = source.subscribe(
    function (x) {
        console.log('Next!');
    },
    function (err) {
        console.log('Error: ' + err);
    },
    function () {
        console.log('Completed');
    });

并且我在 index.html 中包含了 rx.js and rx.binding.js。但它说,

Rx.DOM is undefined.

我在两个 rx 文件中也没有看到 DOM 函数。

它作为不同的扩展名出现https://github.com/Reactive-Extensions/RxJS-DOM