Feed is a RSS 2.0, Atom 1.0 and Json Feed 1.0 generator for Node.js, based on work from Jean-Philippe Monette and initiated by a need of the PeerTube project. https://www.npmjs.com/package/pfeed
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Rigel Kent de4dcd1728
(fix) deal with empty category value
3 years ago
src (fix) deal with empty category value 3 years ago
.babelrc added babel support for rest operator and target node 8 (as used in peertube) 5 years ago
.gitignore (mrss) implement additional properties in the item scope for #10 3 years ago
.npmignore (lint) reformatting code for readability 3 years ago
.travis.yml adding torrent enclosure support 5 years ago
AUTHORS image support for RSS 2.0 10 years ago
LICENSE image support for RSS 2.0 10 years ago
README.md (mrss) implement additional properties in the item scope for #10 3 years ago
package-lock.json (mrss) implement additional properties in the item scope for #10 3 years ago
package.json (fix) deal with empty category value 3 years ago
yarn.lock added babel support for rest operator and target node 8 (as used in peertube) 5 years ago

README.md

Feed for Node.js

Feed is a RSS 2.0, JSON Feed 1.0, Atom 1.0 and JSON Feed 1.0 generator for Node.js

Build Status

Installation

$ npm install feed

Features

  • Pure JavaScript
  • Support for Atom 1.0, Json 1.0, RSS 2.0 (and a growing subset of MRSS)
  • Lightweight - Only 1 dependency and 2 partial dependencies!

Quick Start

First, add the module:

// @ts-ignore
const Feed = require('feed')

Insert feed-specific information:

let feed = new Feed({
  title: 'Feed Title',
  description: 'This is my personal feed!',
  id: 'http://example.com/',
  link: 'http://example.com/',
  image: 'http://example.com/image.png',
  favicon: 'http://example.com/favicon.ico',
  copyright: 'All rights reserved 2013, John Doe',
  updated: new Date(2013, 06, 14), // optional, default = today
  generator: 'awesome', // optional, default = 'Feed for Node.js'
  feedLinks: {
    json: 'https://example.com/json',
    atom: 'https://example.com/atom',
  },
  author: {
    name: 'John Doe',
    email: 'johndoe@example.com',
    link: 'https://example.com/johndoe'
  }
})

Insert items using the item function:

posts.forEach(post => {
  feed.addItem({
    title: post.title,
    id: post.url,
    link: post.url,
    description: post.description,
    content: post.content,
    author: [{
      name: 'Jane Doe',
      email: 'janedoe@example.com',
      link: 'https://example.com/janedoe'
    }, {
      name: 'Joe Smith',
      email: 'joesmith@example.com',
      link: 'https://example.com/joesmith'
    }],
    contributor: [{
      name: 'Shawn Kemp',
      email: 'shawnkemp@example.com',
      link: 'https://example.com/shawnkemp'
    }, {
      name: 'Reggie Miller',
      email: 'reggiemiller@example.com',
      link: 'https://example.com/reggiemiller'
    }],
    date: post.date,
    image: post.image
  })
})

Insert categories using:

feed.addCategory('Technologie')

Insert contributors using:

feed.addContributor({
  name: 'Johan Cruyff',
  email: 'johancruyff@example.com',
  link: 'https://example.com/johancruyff'
})

Output a RSS 2.0 feed:

feed.rss2()

Output an Atom 1.0 feed:

feed.atom1()

Output a JSON Feed 1.0 feed:

feed.json1()

Hopefully simple enough, and soon-to-be more featureful :)

License

Copyright (C) 2013, Jean-Philippe Monette contact@jpmonette.net

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.