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 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-reddwire

v0.1.0

Published

Monitor any subreddit for new posts and trigger n8n workflows. No Reddit API key required. A drop-in replacement for the discontinued built-in Reddit node.

Downloads

136

Readme

n8n-nodes-reddwire

Monitor any subreddit for new posts and trigger n8n workflows — no Reddit API key required.

A drop-in replacement for the n8n built-in Reddit node, which broke when Reddit ended self-service API access in November 2025. Uses Reddit's public JSON endpoints. Works on self-hosted n8n.

Install

In your self-hosted n8n: Settings → Community Nodes → Install and paste:

n8n-nodes-reddwire

Approve the prompt. The Reddwire trigger node appears in your node panel within a few seconds.

Use

  1. Add the Reddwire trigger node to your workflow.
  2. Set the Subreddit (e.g. bitcoin).
  3. Optionally set a Keyword Filter (e.g. crash).
  4. Choose a poll interval (every minute, every 5 minutes, etc).
  5. Activate the workflow. It fires whenever a matching new post appears.

Output payload

{
  "id": "abc123",
  "title": "Bitcoin just crashed 20%",
  "url": "https://reddit.com/r/bitcoin/comments/abc123",
  "author": "throwaway_trader",
  "body": "Full post text...",
  "score": 47,
  "num_comments": 12,
  "subreddit": "bitcoin",
  "created_at": "2026-05-11T14:32:00Z",
  "permalink": "/r/bitcoin/comments/abc123"
}

Matches the original Reddit node format so downstream workflows need no changes.

How it works

  • Polls reddit.com/r/{subreddit}/new.json at your configured interval.
  • Deduplicates by post ID using n8n's per-workflow static data store (last 500 IDs).
  • First run is a baseline — only posts that arrive after first run will trigger your workflow. (Otherwise the first poll would fire 25 old posts.)
  • If you set a keyword filter, the node looks in the post title, body, or both — your choice.

Hosted version

Using n8n cloud and can't install community nodes? Visit reddwire.dev for the hosted version — same logic, runs on our infrastructure, fires webhooks straight into your n8n workflows.

  • Free plan: 1 monitor, 15-minute polling
  • Builder ($9/mo): 5 monitors, 2-minute polling
  • Pro ($19/mo): unlimited monitors, 30-second polling

Paid plans accept USDC via CoinRemitter.

License

FSL-1.1-MIT — Functional Source License. Free for self-hosters, internal use, education, and any non-competing purpose. Auto-converts to MIT two years after each release. See LICENSE for the full terms.