Node.js RSS 模块
有没有办法使用 Node.js 实时读取 RSS 提要?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法使用 Node.js 实时读取 RSS 提要?
谢谢
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
尝试 node-feedparser
try node-feedparser
尝试 这个。这是一个实时 RSS 解析器教程。享受。
Try this. It's a real-time RSS parser tutorial. Enjoy.
尝试 node-rss。虽然它不稳定,但您应该能够使用它作为示例来编写您自己的 RSS 解析器。
Try node-rss. It is unstable though but you should be able to use it as an example to write your own RSS parser.
试试这个,它也解析 rss、atom 和 feedburner
https://github.com/tk120404/node-rssparser
Try this, this parses rss,atom and feedburner as well
https://github.com/tk120404/node-rssparser
不确定实时..我见过大多数人使用 SetTimeout 轮询 RSS URL,如下例所示..
或者您可以尝试使用任务队列,例如 Node-Resque。
但这里有一些您可以从中获取的库..
使用 sax-js 的简单 Node.js RSS 解析器
或者
Node FeedParser
我发现了一个很好的 Node JS 介绍,其中包括 RSS 解析示例。这里
当我走的时候通过我的项目,我将用任何新发现更新这个答案。希望这有帮助。
Not sure about realtime.. I have seen most people poll the RSS URLs using SetTimeout like the example below..
Or you could try using a Task Queue like Node-Resque.
But here are a couple of libraries that you could source from..
A simple node.js rss parser using sax-js
or
Node FeedParser
I found a pretty good intro to Node JS that includes a RSS parsing example.. Here
As I make my way through my project, I will update this answer with any new findings.. Hope this helped.