Node-RED Feedparser Node

1.0.5 · active · verified Sun Apr 19

This package provides a Node-RED node, `node-red-node-feedparser`, designed to monitor and parse RSS and Atom feeds. It is currently at version 1.0.5 and is part of the official Node-RED nodes collection, suggesting an active maintenance schedule tied to Node-RED's own releases. The node differentiates itself by integrating directly into Node-RED flows, allowing users to easily consume and process feed data within a visual programming environment without writing custom parsing logic. It handles the polling of feeds at configurable intervals and outputs structured data for each article, including title, description, link, and a complete article object. A key change in version 1.0 involved a rewrite to remove the deprecated `request` library and switch to a new parsing engine, resulting in changes to the output data structure.

Common errors

Warnings

Install

Quickstart

Installs the Node-RED feedparser node and outlines the steps to add, configure, and debug its output within the Node-RED flow editor to start parsing RSS/Atom feeds.

npm install node-red-node-feedparser

# After installation, restart Node-RED and open the editor (e.g., http://localhost:1880).
# Drag the 'feedparser' node from the palette onto your flow.
# Configure it by setting a 'Feed URL' and an 'Interval' (e.g., 15 minutes).
# Connect the node's output to a 'debug' node (configured to display 'complete msg object')
# to observe the parsed feed articles in the debug sidebar.

view raw JSON →