JSPM

parse-rss

1.0.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 64
  • Score
    100M100P100Q92271F
  • License BSD

parse rss feeds

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

node-parse-rss Build Status


NPM

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:...
        },{}...]