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

@vybit/n8n-nodes-vybit

v2.2.0

Published

Push notifications with personalized sounds - n8n community nodes for Vybit

Readme

@vybit/n8n-nodes-vybit

Official n8n community nodes for Vybit - the personalized audio notification platform.

npm version License: MIT

Features

  • Dual Authentication: API Key for personal automation or OAuth2 for multi-user services
  • Push Notifications: Send personalized audio notifications from your workflows
  • Full API Access: 33 operations across 7 resources, available with either auth method
  • Manage Vybits: Create, update, trigger, and delete vybits programmatically
  • Subscriptions & Peeps: Subscribe to vybits and manage access invitations
  • Reminders: Create and manage scheduled reminders on vybits
  • Sounds & Logs: Search sounds and view notification history
  • Zero Dependencies: Built with zero runtime dependencies

Installation

Self-Hosted n8n

npm install @vybit/n8n-nodes-vybit

Then restart your n8n instance.

n8n Cloud

Once verified, search for "Vybit" in the n8n nodes panel to install. Verification is currently under review.

For Multi-User Deployments

See DEPLOYMENT.md for configuring credential sharing in multi-user n8n instances to centrally manage OAuth2 Client Secrets.


Which Authentication Method Should I Use?

Both methods provide full access to all operations. Choose based on your use case:

Use API Key if:

  • You're automating your own Vybit account
  • Building personal workflows (e.g., "alert me when server is down")
  • Integrating Vybit into your backend service

Example: DevOps engineer using n8n to trigger their personal Vybit when monitoring detects issues

Use OAuth2 if:

  • You're building a service where users connect their own accounts
  • Each user needs to authorize their own Vybit account
  • Multi-tenant scenarios (agency managing client notifications)

Example: Agency building n8n workflows that send notifications to client Vybit accounts


Quick Start

API Key Setup

  1. Go to developer.vybit.net
  2. Generate an API key
  3. In n8n:
    • Add Vybit node
    • Authentication: "API Key"
    • Create new credential and paste your API key

OAuth2 Setup

  1. Go to developer.vybit.net
  2. Configure OAuth2 settings (client ID, redirect URI)
  3. In n8n:
    • Add Vybit node
    • Authentication: "OAuth2"
    • Create OAuth2 credential with your client ID/secret
  4. Users authorize their Vybit accounts to connect

Available Operations

All 33 operations are available with both API Key and OAuth2 authentication.

Profile

| Operation | Description | |-----------|-------------| | Get Profile | View account information | | Get Usage Metrics | View current usage and tier limits | | Check API Status | Check API service health |

Vybits

| Operation | Description | |-----------|-------------| | List | Get all vybits | | Get | Get vybit details | | Create | Create a new vybit | | Update | Update vybit settings | | Delete | Delete a vybit | | Trigger | Send a push notification |

Subscriptions

| Operation | Description | |-----------|-------------| | List Public Vybits | Browse publicly available vybits | | Get Public Vybit | Get details of a public vybit | | Subscribe | Subscribe to a vybit | | List My Subscriptions | Get your subscriptions | | Get Subscription | Get subscription details | | Update Subscription | Update subscription settings | | Unsubscribe | Unsubscribe from a vybit | | Send to Owner | Send notification to vybit owner | | Send to Group | Send notification to all subscribers |

Sounds

| Operation | Description | |-----------|-------------| | Search | Search available sounds | | Get | Get sound details |

Logs

| Operation | Description | |-----------|-------------| | List All | View all notification logs | | Get | Get specific log entry details | | List by Vybit | View logs for a specific vybit | | List by Subscription | View logs for a subscription |

Peeps

| Operation | Description | |-----------|-------------| | List All | View all peep invitations | | List by Vybit | View peeps for a specific vybit | | Invite | Invite a user to a vybit | | Get | Get peep details | | Delete | Remove a peep invitation |

Reminders

| Operation | Description | |-----------|-------------| | List | List all reminders on a vybit | | Create | Create a new scheduled reminder | | Update | Update an existing reminder | | Delete | Delete a reminder |


Example Workflows

Trigger Alert on Server Error

Webhook (error event)
  → Vybit (Trigger)

Daily Summary Notification

Schedule (daily at 9am)
  → HTTP Request (fetch metrics)
  → Vybit (Trigger with summary)

Create Vybit from Airtable

Airtable Trigger (new record)
  → Vybit (Create vybit)
  → Vybit (Trigger, send notification)

Development

This package uses n8n's built-in httpRequestWithAuthentication helper for all API calls (no bundled SDK). API endpoint paths are maintained in Vybit.node.ts and must be kept in sync with @vybit/api-sdk when the API changes.

Building

npm run build

Testing Locally

Using Docker (recommended):

# See docker-compose.yml in the project root's my-n8n directory
# The dist is volume-mounted into the container via N8N_CUSTOM_EXTENSIONS
docker compose up -d

Using npm link:

npm link
cd /path/to/n8n
npm link @vybit/n8n-nodes-vybit
n8n start

Integration Tests

# Requires a running n8n instance with a configured Vybit API Key credential
export N8N_API_KEY="your-n8n-api-key"
export VYBIT_API_CREDENTIAL_ID="your-credential-id"
node test/integration/test-runner.js

Resources


Related Packages

Part of the Vybit SDK monorepo:


License

MIT © Flatirontek LLC