co wrapper for feedparser package.
const co = require('co')
const feedParser = require('co-feedparser')
co(function*() {
try {
const meta = yield feedParser('https://github.com/blog/all.atom')
const articles = meta.articles
console.log(articles)
}
catch (error) {
console.error(error.stack)
}
})
Uses feedparser on the given stream and fetches all articles at once.
Returns feedparser's meta data with an additional property articles
.
-
stream
- A readable stream from which feedparser will read its data. -
uri
- A string can also be given instead of a stream which is a shortcut forrequest(uri)
. -
options
- Options used by feedparser. -
options.requestOptions
- When passing auri
instead of a stream, these options will be passed torequest(uri, options)
.
$ npm install co-feedparser
Node 4.0.0 or newer
MIT