Package Exports
- parse-rss
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (parse-rss) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
rss feed parser
wrapper of feedparser
##install
using npm:
npm install parse-rss*or using package.json:
"parse-rss": "*"##usage # Coffeescript parser = require 'parse-rss' url = "http://images.apple.com/main/rss/hotnews/hotnews.rss" parser url, (err,rss)-> console.log err if err console.log rss
# =>
# [ { title: 'Apple Launch new iPad...',
description: 'application/rss+xml',
meta: [Object],
},{
title:...
description:...
},{}...]
