A Node-RED node that converts incoming message payloads (arrays of objects) into an RSS or Atom feed. Version 0.1.6 wraps the popular 'rss' npm package and maps feed- and item-level options from msg properties or node configuration. Useful for creating dynamic feeds within Node-RED flows. Limited release history. Simpler than full-featured feed generators but tightly integrated with Node-RED's message-based paradigm.
npm install node-red-contrib-rssVerified import paths — ran on the pinned version, not inferred.
Install the node and configure it in Node-RED to convert incoming arrays into RSS feed XML.
Ensure the input node outputs an array, or add a function node to transform data into the expected format.
Verify that all required properties (e.g., title, description, url) are set on msg before the rss node.
Consider switching to a more up-to-date RSS library if advanced features are needed.
Double-click the rss node and ensure feed options (title, link, etc.) are filled in or mapped correctly.
Use a function node to convert the payload to an array before sending to the rss node, e.g., msg.payload = [msg.payload]; return msg;