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

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Repository problems These problems occurred while renovating this repository. [View logs](https://developer.mend.io//github/dylang/node-rss). - WARN:...

My feed items do not have categories, and the docs list this as optional. When running `feed.xml()`: ``` TypeError: undefined is not an object (evaluating 'item.categories.forEach') at /node_modules/rss/lib/index.js:71:9 at forEach...

This PR superseded #52 (Added tests and linter issues were fixed).

This simple update should also be changed at https://www.npmjs.com/package/rss where I first discovered the issue.

https://www.petefreitag.com/item/208.cfm ``` ... ```

I just spent a while trying to figure out why a gatsby generated rss feed included links to this repo. After much searching, I discovered this fallback code: https://github.com/dylang/node-rss/blob/1.2.2/lib/index.js#L36. This...

The [RSS spec](http://www.w3.org/TR/REC-xml/#charsets) specifies exactly which characters are considered valid in RSS: `#x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF]` At present, this library doesn't handle ensuring...

If I do a passthrough of this RSS enclosure element: ``` xml ``` using this code: ``` js if (item.enclosures && Array.isArray(item.enclosures)){ item.enclosures.forEach(function(enclosure){ if (enclosure.type === 'audio/mpeg') { itemOptions.enclosure =...

There doesn't seem to be a way to add `media:content` ``

how do I remove the CDATA from here? Here's the RSS feed we're using https://www.codechefs.dev/rss.xml ``` ``` I'm running into issues getting this feed into getting this through https://www.stitcher.com/ which...