RxJS 与 rx-node
RxJS vs rx-node
为什么我不应该在我的 NodeJS 项目中使用 RxJS 而不是 rx-node?
rx-node 存储库在第一行介绍了这一点:
This project provides Reactive Extensions for JavaScript (RxJS) bindings for Node.js and io.js to abstract over the EventEmitter, Streams and more.
RxJS 是官方存储库。 rx-node 添加了对一些节点特定事物的支持,其详细信息在其 documentation page.
中进行了概述
如果您需要这些功能,请使用 rx-node。如果没有,请使用 RxJS。由于前者扩展了后者,如果您以后改变主意,迁移路径将相当简单。
为什么我不应该在我的 NodeJS 项目中使用 RxJS 而不是 rx-node?
rx-node 存储库在第一行介绍了这一点:
This project provides Reactive Extensions for JavaScript (RxJS) bindings for Node.js and io.js to abstract over the EventEmitter, Streams and more.
RxJS 是官方存储库。 rx-node 添加了对一些节点特定事物的支持,其详细信息在其 documentation page.
中进行了概述如果您需要这些功能,请使用 rx-node。如果没有,请使用 RxJS。由于前者扩展了后者,如果您以后改变主意,迁移路径将相当简单。