npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-rssmedia

v1.0.1

Published

An n8n community node for reading RSS feeds and extracting media content with advanced filtering options

Readme

n8n-nodes-rssmedia

This is an n8n community node that allows you to fetch RSS feeds and extract media content with advanced filtering options.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Compatibility
Usage
Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

Community node installation

  1. Go to Settings > Community Nodes.
  2. Select Install.
  3. Enter n8n-nodes-rssmedia in Enter npm package name.
  4. Agree to the risks of using community nodes: select I understand the risks of installing unverified code from a public source.
  5. Select Install.

After installing the node, you can use it like any other node in your workflows.

Operations

The RSS Media Reader node supports the following operations:

Fetch RSS Feed

  • Fetches an RSS feed from a given URL
  • Extracts media content from RSS items
  • Supports filtering by media type
  • Provides advanced configuration options

Credentials

This node doesn't require credentials as it works with public RSS feeds. However, you can add custom headers for authentication if needed.

Compatibility

This node is compatible with:

  • n8n version 0.87.0 and above
  • RSS 2.0 feeds
  • Atom feeds
  • RSS 1.0 (RDF) feeds
  • Media RSS extensions
  • iTunes podcast extensions

Usage

Basic Setup

  1. Add the RSS Media Reader node to your workflow
  2. Enter the RSS feed URL in the RSS Feed URL field
  3. Configure any additional options as needed
  4. Execute the node

Available Options

Timeout

Set the request timeout in seconds (1-300 seconds, default: 15)

Max Items

Limit the number of items returned (0 = all items, default: 0)

Media Types

Filter results by media type:

  • All Media: Include all types of media content
  • Images: Only include image content
  • Videos: Only include video content
  • Audio: Only include audio content

Include Items Without Media

Choose whether to include RSS items that don't contain media content (default: false)

Custom Headers

Add custom HTTP headers to the request, useful for:

  • Custom User-Agent strings
  • Authentication headers
  • API keys
  • Any other required headers

Output Format

The node returns an array of items with the following structure:

{
  "title": "RSS Item Title",
  "link": "https://example.com/article",
  "pubDate": "Wed, 01 Jan 2024 12:00:00 GMT",
  "description": "Article description",
  "author": "Author Name",
  "category": "Category",
  "guid": "unique-identifier",
  "media": {
    "urls": [
      {
        "url": "https://example.com/media.jpg",
        "type": "image/jpeg",
        "medium": "image",
        "width": 800,
        "height": 600,
        "fileSize": 102400
      }
    ],
    "type": "image",
    "thumbnail": "https://example.com/thumbnail.jpg"
  },
  "source": {
    "url": "https://example.com/rss.xml",
    "title": "RSS Feed Title",
    "description": "RSS Feed Description"
  }
}

Supported Media Sources

The node can extract media from various RSS elements:

  1. Media RSS namespace (media:content, media:thumbnail)
  2. Enclosures (common in podcasts)
  3. iTunes namespace (itunes:image)
  4. Simple image tags
  5. Custom media elements

Error Handling

The node includes robust error handling:

  • URL validation: Ensures the provided URL is valid
  • Timeout handling: Prevents hanging requests
  • Parse errors: Gracefully handles malformed XML
  • Network errors: Provides meaningful error messages
  • Continue on fail: Option to continue processing even if individual items fail

Example Workflows

1. Extract Images from News RSS

RSS Media Reader → Filter (images only) → Download Images → Process Images

2. Podcast Episode Processor

RSS Media Reader → Filter (audio only) → Extract Metadata → Store in Database

3. Media Aggregator

Multiple RSS Media Readers → Merge → Filter by Date → Send Notification

Development

Building the Node

# Install dependencies
pnpm install

# Build the node
pnpm build

# Watch for changes during development
pnpm dev

# Lint the code
pnpm lint

# Format the code
pnpm format

Project Structure

n8n-nodes-rssmedia/
├── nodes/
│   └── RssMedia/
│       ├── RssMedia.node.ts
│       └── rss.svg
├── dist/                 # Built files
├── package.json
├── tsconfig.json
├── gulpfile.js
├── .eslintrc.js
├── .prettierrc
├── .gitignore
└── README.md

Resources

License

MIT

Version History

1.0.0

  • Initial release
  • Support for RSS 2.0, Atom, and RSS 1.0 feeds
  • Media extraction with filtering
  • Advanced configuration options
  • Error handling and validation