1.2.2 • Published 7 years ago

rss v1.2.2

Weekly downloads
77,053
License
MIT
Repository
github
Last release
7 years ago

rss Build Status rss

RSS feed generator. Add RSS feeds to any project. Supports enclosures and GeoRSS.

Usage

Create a new feed

var RSS = require('rss');

var feed = new RSS(feedOptions);
feedOptions
  • title string Title of your site or feed
  • description optional string A short description of the feed.
  • generator optional string Feed generator.
  • feed_url url string Url to the rss feed.
  • site_url url string Url to the site that the feed is for.
  • image_url optional url string Small image for feed readers to use.
  • docs optional url string Url to documentation on this feed.
  • managingEditor optional string Who manages content in this feed.
  • webMaster optional string Who manages feed availability and technical support.
  • copyright optional string Copyright information for this feed.
  • language optional string The language of the content of this feed.
  • categories optional array of strings One or more categories this feed belongs to.
  • pubDate optional Date object or date string The publication date for content in the feed
  • ttl optional integer Number of minutes feed can be cached before refreshing from source.
  • hub optional PubSubHubbub hub url Where is the PubSubHub hub located.
  • custom_namespaces optional object Put additional namespaces in element (without 'xmlns:' prefix)
  • custom_elements optional array Put additional elements in the feed (node-xml syntax)

Add items to a feed

An item can be used for a blog entry, project update, log entry, etc. Your RSS feed can have any number of items. Most feeds use 20 or fewer items.

feed.item(itemOptions);
itemOptions
  • title string Title of this particular item.
  • description string Content for the item. Can contain html but link and image urls must be absolute path including hostname.
  • url url string Url to the item. This could be a blog entry.
  • guid unique string A unique string feed readers use to know if an item is new or has already been seen. If you use a guid never change it. If you don't provide a guid then your item urls must be unique.
  • categories optional array of strings If provided, each array item will be added as a category element
  • author optional string If included it is the name of the item's creator. If not provided the item author will be the same as the feed author. This is typical except on multi-author blogs.
  • date Date object or date string The date and time of when the item was created. Feed readers use this to determine the sort order. Some readers will also use it to determine if the content should be presented as unread.
  • lat optional number The latitude coordinate of the item.
  • long optional number The longitude coordinate of the item.
  • custom_elements optional array Put additional elements in the item (node-xml syntax)
  • enclosure optional object An enclosure object

    /* enclosure takes url or file key for the enclosure object
    
      url:  _required_ url to file object (or file)
      file: _required_ path to binary file (or url)
      size: _optional_ size of the file
      type: _optional_ if not provided the mimetype will be guessed
                       based on the extension of the file or url,
                       passing type to the enclosure will override the guessed type
    */
    
    {
      'url'  : 'http://www.example.com/path/to/image',
      'size' : 1668, //
      'type' : 'image/jpeg'
    }
Feed XML
var xml = feed.xml({indent: true});

This returns the XML as a string.

indent optional boolean or string What to use as a tab. Defaults to no tabs (compressed). For example you can use '\t' for tab character, or ' ' for two-space tabs. If you set it to true it will use four spaces.

Example Usage

var RSS = require('rss');

/* lets create an rss feed */
var feed = new RSS({
    title: 'title',
    description: 'description',
    feed_url: 'http://example.com/rss.xml',
    site_url: 'http://example.com',
    image_url: 'http://example.com/icon.png',
    docs: 'http://example.com/rss/docs.html',
    managingEditor: 'Dylan Greene',
    webMaster: 'Dylan Greene',
    copyright: '2013 Dylan Greene',
    language: 'en',
    categories: ['Category 1','Category 2','Category 3'],
    pubDate: 'May 20, 2012 04:00:00 GMT',
    ttl: '60',
    custom_namespaces: {
      'itunes': 'http://www.itunes.com/dtds/podcast-1.0.dtd'
    },
    custom_elements: [
      {'itunes:subtitle': 'A show about everything'},
      {'itunes:author': 'John Doe'},
      {'itunes:summary': 'All About Everything is a show about everything. Each week we dive into any subject known to man and talk about it as much as we can. Look for our podcast in the Podcasts app or in the iTunes Store'},
      {'itunes:owner': [
        {'itunes:name': 'John Doe'},
        {'itunes:email': 'john.doe@example.com'}
      ]},
      {'itunes:image': {
        _attr: {
          href: 'http://example.com/podcasts/everything/AllAboutEverything.jpg'
        }
      }},
      {'itunes:category': [
        {_attr: {
          text: 'Technology'
        }},
        {'itunes:category': {
          _attr: {
            text: 'Gadgets'
          }
        }}
      ]}
    ]
});

/* loop over data and add to feed */
feed.item({
    title:  'item title',
    description: 'use this for the content. It can include html.',
    url: 'http://example.com/article4?this&that', // link to the item
    guid: '1123', // optional - defaults to url
    categories: ['Category 1','Category 2','Category 3','Category 4'], // optional - array of item categories
    author: 'Guest Author', // optional - defaults to feed author property
    date: 'May 27, 2012', // any format that js Date can parse.
    lat: 33.417974, //optional latitude field for GeoRSS
    long: -111.933231, //optional longitude field for GeoRSS
    enclosure: {url:'...', file:'path-to-file'}, // optional enclosure
    custom_elements: [
      {'itunes:author': 'John Doe'},
      {'itunes:subtitle': 'A short primer on table spices'},
      {'itunes:image': {
        _attr: {
          href: 'http://example.com/podcasts/everything/AllAboutEverything/Episode1.jpg'
        }
      }},
      {'itunes:duration': '7:04'}
    ]
});

// cache the xml to send to clients
var xml = feed.xml();

Notes

  • You do not need to escape anything. This module will escape characters when necessary.
  • This module is very fast but you might as well cache the output of xml() and serve it until something changes.

Inspiration

I started this module years ago (April 2011) because there weren't any Node modules for creating RSS. Nearly 50 modules use RSS, as well as many web sites and the popular Ghost publishing platform.

Contributing

Contributions to the project are welcome. Feel free to fork and improve. I do my best accept pull requests in a timely manor, especially when tests and updated docs are included.

About the Author

Hi! Thanks for checking out this project! My name is Dylan Greene. When not overwhelmed with my two young kids I enjoy contributing to the open source community. I'm also a tech lead at Opower. @dylang @dylang

Here's some of my other Node projects:

NameDescriptionnpm Downloads
npm‑checkCheck for outdated, incorrect, and unused dependencies.npm-check
grunt‑notifyAutomatic desktop notifications for Grunt errors and warnings. Supports OS X, Windows, Linux.grunt-notify
shortidAmazingly short non-sequential url-friendly unique id generator.shortid
grunt‑promptInteractive prompt for your Grunt config using console checkboxes, text input with filtering, password fields.grunt-prompt
xmlFast and simple xml generator. Supports attributes, CDATA, etc. Includes tests and examples.xml
changelogCommand line tool (and Node module) that generates a changelog in color output, markdown, or json for modules in npmjs.org's registry as well as any public github.com repo.changelog
space‑hogsDiscover surprisingly large directories from the command line.space-hogs
observatoryBeautiful UI for showing tasks running on the command line.observatory
captionbotGet captions for image using Microsoft's CaptionBot 🤖captionbot
grunt‑attentionDisplay attention-grabbing messages in the terminalgrunt-attention
what‑dogGet the breed of a dog from an image using Microsoft's what-dog.what-dog
anthologyModule information and stats for any @npmjs useranthology
random‑puppyGet a random imgur image url, by default a puppy.random-puppy
grunt‑catEcho a file to the terminal. Works with text, figlets, ascii art, and full-color ansi.grunt-cat

This list was generated using anthology.

License

Copyright (c) 2017 Dylan Greene, contributors.

Released under the MIT license.

Screenshots are CC BY-SA (Attribution-ShareAlike).


Generated using grunt-readme with grunt-templates-dylang on Wednesday, January 11, 2017. _To make changes to this document look in /templates/readme/

@laundry/laundry@ido-design/vuepress-plugin-rss@timi-design/vuepress-plugin-rssacyort-rssbuildgem-rssskri.be@infinitebrahmanuniverse/nolb-rssportfolio-node@everything-registry/sub-chunk-2688@loftysoul/soul@igames/ghost@jpfulton/gatsby-plugin-feed-mdx@lukehansell/next-mdx-blog@metalsmith/rss@micro-app/plugin-vuepress@jti/antora-extension-release_notes@jti/antora-extension-release_notes-pg@theowenyoung/gatsby-plugin-feedimgur2rssgrunt-bildungsvnrssinnsbruck-blog@thombruce/tnt-contenttwitter-rssitunes-rssitunes-rss-clituertubecastergrunt-markdown-bloggulp-article-rssjandan-pic-feedjournorss-fulltextrss-githubrss-braiderrss-combinerrss-combiner-nsrufio-rssrssaasrss-serverrssifyresin-ghostresin-blogschnackfat-rss@vuepress-reco/vuepress-plugin-rsskn-statinamickerplunk-blogjson2rsskeystone-rsskronikarztwitter_digest@znck/vue-cli-plugin-bloglaundryvuepress-plugin-blogrssvuepress-plugin-rssvuepress-plugin-rss-feedvuepress-plugin-rss-supportlambda-rss-formatterlabnoteslambda-importio@zce/ghostwebriq-roots-rss-generatorlouis@tomieric/vuepress-plugin-rssideamarket@tracking-exposed/data@tracking-exposed/process-rssjspodswhippetacyort-plugin-rssadasq-services-ytvadonis-rsswongterrencew-fork-phenomicfrontend-website-headlesssimple-blog@renovamen/vuepress-plugin-rsssoundcloud2podcastsoundon-apighost_zh_cjsstatic-fnsstatic-fns-dxstatinamicstatical-ghoststatic-web-archivestatic-web-castgitpressgridsome-plugin-rssgridsome-plugin-syndicationstratic-indexes-to-rss@nadyashakhat/ghost@ninanfm/feed@morgs32/ghostreactifiersimple-rss-gen@petitchevalroux/node-feed-aggregator@phenomic/plugin-rss-feedshockfido2rssfledermaus
1.2.2

7 years ago

1.2.1

8 years ago

1.2.0

8 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.3.2

10 years ago

0.3.1

10 years ago

0.3.0

10 years ago

0.2.1

11 years ago

0.2.0

11 years ago

0.1.0

11 years ago

0.0.4

12 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

13 years ago