feedme.js:RSSAtomJSON feed解析器 源码
FeedMe.js feedme.js是一个RSS / Atom / JSON feed解析器。 这与其他几个Feed解析器有何不同? 它使用进行xml解析,并使用进行json解析。 这意味着它是用纯Javascript编码的,因此更易于部署。 我需要一个解析器,它不需要我安装外部依赖项或编译任何东西。 用法 const FeedMe = require ( 'feedme' ) ; const http = require ( 'http' ) ; http . get ( 'http://www.npr.org/rss/rss.php?id=1001' , ( res ) => {
用户评论