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

@vocoweb/notify

v1.0.1

Published

Production-ready unified notification system for B2B SaaS

Readme

@vocoweb/notify

npm version License: MIT

Production-ready unified notification system for B2B SaaS.

Overview

@vocoweb/notify is the "Pulse" module that unifies Email, In-App, and Push notifications into a single API. Stop juggling SendGrid, Courier, and database notifications—just call notify.send().

Key Features:

  • 📧 Multi-Channel - Email, in-app, and push notifications
  • 🔔 Pre-built Inbox - Drop-in notification bell component
  • 📬 Template System - Reusable notification templates
  • Real-Time - Supabase real-time for instant notifications
  • 🎨 Customizable - Full control over templates and styling

Installation

npm install @vocoweb/notify

Quick Start

Server-Side

import { notify } from '@vocoweb/notify';

// Send multi-channel notification
export async function POST(request: Request) {
  await notify.send({
    userId: 'user_123',
    channel: ['email', 'in-app'],
    template: 'welcome-msg',
    data: {
      name: 'John Doe',
    },
  });
  
  return Response.json({ success: true });
}

// Send email only
await notify.sendEmail({
  to: '[email protected]',
  subject: 'Welcome to VocoWeb',
  template: 'welcome-email',
  data: { name: 'John' },
});

// Create in-app notification
await notify.sendInApp({
  userId: 'user_123',
  title: 'Project Deployed',
  message: 'Your project is live at example.com',
  link: '/projects/123',
});

Client-Side (React)

import { VocoNotificationBell } from '@vocoweb/notify/react';

// Add to navbar
export default function Navbar() {
  return (
    <nav>
      <VocoNotificationBell />
    </nav>
  );
}

API Reference

Server Methods

  • send(options) - Universal send (multi-channel)
  • sendEmail(options) - Send email notification
  • sendInApp(options) - Create in-app notification
  • markAsRead(notificationId) - Mark notification as read
  • getNotifications(userId) - Get user notifications

React Components

  • <VocoNotificationBell /> - Navbar notification bell with dropdown
  • <VocoNotificationList /> - Notification list component

Templates

// Custom template
const templates = {
  'project-deployed': {
    email: {
      subject: 'Project Deployed',
      html: '<h1>Your project {{name}} is live!</h1>',
    },
    inApp: {
      title: 'Project Deployed',
      message: 'Your project {{name}} is live at {{url}}',
    },
  },
};

Environment Variables

# Supabase (Required)
NEXT_PUBLIC_SUPABASE_URL=your_supabase_url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key
SUPABASE_SERVICE_ROLE_KEY=your_service_role_key

# Email Provider (Optional)
SENDGRID_API_KEY=SG_...

Database Schema

CREATE TABLE notifications (
  id UUID PRIMARY KEY DEFAULT uuid_generate_v4(),
  user_id UUID NOT NULL REFERENCES auth.users(id) ON DELETE CASCADE,
  title TEXT NOT NULL,
  message TEXT NOT NULL,
  link TEXT,
  read BOOLEAN DEFAULT FALSE,
  created_at TIMESTAMPTZ DEFAULT NOW()
);

License

MIT © VocoWeb

Support


Built with care by VocoWeb