node-rss icon indicating copy to clipboard operation
node-rss copied to clipboard

RSS feed generator for Node.

Results 46 node-rss issues
Sort by recently updated
recently updated
newest added

Technically, 'application/rss+xml' isn't a valid media type (https://www.iana.org/assignments/media-types/media-types.xhtml). This could cause problems in some browsers or RSS readers. While leaving it as the default, allow users to specify a type...

I have a static site generator which, shockingly, is using node-rss to output RSS feeds. This code runs successfully: ```js file.data.posts.map(function(post) { return { title: post.title, url: urlPrefix + file.relative,...

I needed to generate rss feed for my Objective-C application which is using Sparkle for updates. Here is link showing enclosure with custom attributes: https://sparkle-project.org/documentation/publishing/#publishing-an-update

I am parsing images from facebook and there are some image URLs like this: https://scontent.xx.fbcdn.net/hphotos-xfp1/v/t1.0-9/s720x720/11665637_10153092749860369_5867235404683714794_n.jpg?oh=185130d3b64dca7853682ce21a9c0893&oe=562DBCC0 The `type` returned for this link is `false`. I saw that that type recognition in...

Who wants to review this?

In the example code in the Readme.md, you show an author element on the "feed" which generates an author sub-element on channel. If you set the author property on the...

PR Wanted