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-warmy-io

v0.1.4

Published

n8n community node for Warmy.io email warmup API

Downloads

1,012

Readme

n8n-nodes-warmy-io

npm version

n8n community node for the Warmy.io email-warmup API.

Resources & operations

| Resource | Operations | | --- | --- | | Mailbox | List, Get, Create, Update, Delete, Pause, Resume, change tariff plan, and more (15 operations total). | | Seedlist | List splits, list emails, manage seedlist providers (5 operations). | | Deliverability Checker | List, get, run, and inspect deliverability checks (5 operations). | | Standalone Deliverability Checker | List, get, and inspect standalone deliverability runs (4 operations). | | User Template | Manage warmup email templates. |

All endpoints back the official Warmy.io REST API. Pagination is handled transparently via a Return All toggle on every list operation.

Installation

As an n8n community node (recommended)

In your n8n instance: Settings → Community Nodes → Install and enter:

n8n-nodes-warmy-io

Manual install (self-hosted n8n)

cd ~/.n8n/custom
npm init -y                          # only if ~/.n8n/custom is empty
npm install n8n-nodes-warmy-io
n8n start

In the browser open http://localhost:5678, create a workflow, and search for the Warmy node.

Credentials setup

  1. In n8n: Credentials → New → Warmy API.
  2. Fill in:
  3. Press Test — should return success.

Local development

Requires Node.js 22 LTS (n8n's native isolated-vm won't build on Node 25+).

git clone https://github.com/skachkiss/n8n-nodes-warmy-io.git
cd n8n-nodes-warmy-io
npm install
npm run build                        # tsc → dist/, then gulp copies icons
npm link                             # expose the package globally

cd ~/.n8n/custom
npm init -y                          # only if not already initialised
npm link n8n-nodes-warmy-io

n8n start

n8n loads custom nodes once at startup — restart the process after every npm run build. The browser also caches the SVG icon aggressively; hard-refresh (Cmd+Shift+R) if a logo change doesn't appear.

Dev scripts

npm run dev      # tsc --watch (does NOT re-copy icons; rerun build if svg changes)
npm run lint     # eslint via eslint-plugin-n8n-nodes-base
npm run lintfix  # auto-fix most n8n-nodes-base lint rules
npm run format   # prettier

Adding a new resource

  1. Read the relevant section of the Warmy OpenAPI spec.
  2. Create nodes/Warmy/descriptions/<Resource>Description.ts exporting <resource>Operations and <resource>Fields.
  3. Re-export from nodes/Warmy/descriptions/index.ts.
  4. In nodes/Warmy/Warmy.node.ts: add the resource value to the resource dropdown, spread the new operations/fields, and add a dispatch branch in execute() calling your execute<Resource> function.
  5. npm run build && npm run lintfix.

License

MIT