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-fizzy

v0.1.4

Published

n8n community node for Fizzy - the kanban tool by 37signals

Readme

n8n-nodes-fizzy

n8n.io - Workflow Automation License CI

This is an n8n community node that lets you integrate Fizzy into your n8n workflows.

Fizzy is 37signals' simple, opinionated kanban tool that helps teams focus on what matters. With this node, you can automate your Fizzy boards, cards, comments, and more—connecting them to hundreds of other services in n8n.

n8n is a fair-code licensed workflow automation platform.

What You Can Do

Automate Your Workflow

  • Create cards automatically from emails, Slack messages, or form submissions
  • Sync cards with your CRM, helpdesk, or other project tools
  • Get notified in Slack, Discord, or email when cards are assigned or completed
  • Generate reports by pulling card data into spreadsheets or dashboards

React to Events in Real-Time

The Fizzy Trigger node listens for webhook events, so your workflows fire instantly when:

  • A new card is added
  • A card is moved to a column
  • Someone is assigned or unassigned
  • A card is moved to "Done", reopened, or moved to "Not Now"
  • A comment is added

Installation

Follow the installation guide in the n8n community nodes documentation.

Quick install via npm:

npm install n8n-nodes-fizzy

Nodes

Fizzy

The main node for interacting with your Fizzy data. Supports full CRUD operations across all Fizzy resources.

| Resource | Operations | |----------|------------| | Board | Get, Get Many, Create, Update, Delete | | Card | Get, Get Many, Create, Update, Delete, Close, Reopen, Move to Column, Move to Not Now, Send to Triage, Toggle Tag, Toggle Assignment, Watch, Unwatch | | Column | Get, Get Many, Create, Update, Delete | | Comment | Get, Get Many, Create, Update, Delete | | Reaction | Get Many, Create, Delete | | Step | Get, Create, Update, Delete | | Tag | Get Many | | User | Get, Get Many, Update, Deactivate | | Notification | Get Many, Mark as Read, Mark as Unread, Mark All as Read |

Fizzy Trigger

A webhook-based trigger node that starts workflows when events happen in Fizzy.

| Event | Description | |-------|-------------| | Card Added | A new card is created | | Card Assigned | Someone is assigned to a card | | Card Board Changed | A card is moved to a different board | | Card Column Changed | A card is moved to a column | | Card Moved Back to "Maybe?" | A card is sent back to triage | | Card Moved to "Done" | A card is closed | | Card Moved to "Not Now" | A card is postponed | | Card Moved to "Not Now" Due to Inactivity | A card is automatically postponed due to inactivity | | Card Reopened | A card is reopened from Done | | Card Unassigned | Someone is removed from a card | | Comment Added | A comment is added to a card |

Webhook payloads can be verified using HMAC-SHA256 signature verification for security.

Credentials

To connect n8n to Fizzy, you'll need:

  1. API Token - Generate a personal access token from your Fizzy account settings
  2. Base URL (optional) - Defaults to https://app.fizzy.do. Change this if you're using a self-hosted instance.

Setting Up Credentials

  1. In n8n, go to CredentialsNew Credential
  2. Search for "Fizzy API"
  3. Enter your API token
  4. (Optional) Update the base URL if self-hosting
  5. Click Test Connection to verify

Compatibility

  • Minimum n8n version: 1.0.0
  • Node.js: v20 or higher
  • Tested with: n8n 1.70.0+

Development

Setup

git clone https://github.com/robzolkos/n8n-nodes-fizzy.git
cd n8n-nodes-fizzy
npm install

Commands

| Command | Description | |---------|-------------| | npm run build | Compile TypeScript to JavaScript | | npm run lint | Validate node structure against n8n requirements | | npm run lintfix | Auto-fix linting issues | | npm run test | Run unit tests | | npm run test:watch | Run tests in watch mode | | npm run dev | Start n8n with hot-reload for development |

Testing with Docker

Run n8n in Docker with your local node mounted:

# Build the node first
npm run build

# Start n8n with the custom node
docker run -it --rm -p 5678:5678 \
  -v $(pwd)/dist:/home/node/.n8n/custom/n8n-nodes-fizzy \
  -e N8N_CUSTOM_EXTENSIONS="/home/node/.n8n/custom" \
  n8nio/n8n

# Open http://localhost:5678 and search for "Fizzy"

Example Workflows

Slack → Fizzy Card

Create a Fizzy card whenever someone posts in a specific Slack channel.

Fizzy → Google Sheets Report

When a card is closed, append its details to a Google Sheet for tracking completed work.

Email → Fizzy Triage

Forward emails to a webhook that creates cards in your Fizzy triage column.

Fizzy Assignment → Slack DM

Notify team members via Slack DM when they're assigned to a card.

Resources

License

MIT


Fizzy is a trademark of 37signals, LLC. The Fizzy logo is used with permission.