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/meter

v1.0.1

Published

Production-ready usage tracking and limits for B2B SaaS

Readme

@vocoweb/meter

npm version License: MIT

Production-ready usage tracking and limits for B2B SaaS.

Overview

@vocoweb/meter is the "Meter" module that makes usage-based pricing simple. Track usage, enforce limits, and display beautiful progress bars—all with a single function call.

Key Features:

  • 📊 Usage Tracking - Track any metric (API calls, PDFs, storage, etc.)
  • 🎯 Limit Enforcement - Automatic 402 errors when limits exceeded
  • 🔄 Auto Reset - Monthly/daily/weekly reset periods
  • 📈 Usage UI - Pre-built progress bar component
  • High Performance - Built on Supabase with row-level security

Installation

npm install @vocoweb/meter

Quick Start

Server-Side

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

// Increment usage
export async function POST(request: Request) {
  const user = await auth.requireUser(request);
  
  // Check limit before generating
  await meter.checkLimit(user.id, 'pdf_generated');
  
  // Generate PDF
  const pdf = await generatePDF(data);
  
  // Increment counter
  await meter.increment(user.id, 'pdf_generated', 1);
  
  return Response.json({ pdf });
}

// Get current usage
export async function GET(request: Request) {
  const user = await auth.requireUser(request);
  const usage = await meter.getUsage(user.id, 'pdf_generated');
  
  return Response.json({
    used: usage.current,
    limit: usage.limit,
    percentage: (usage.current / usage.limit) * 100,
  });
}

Client-Side (React)

import { VocoUsageBar } from '@vocoweb/meter/react';

export default function Dashboard() {
  return (
    <div>
      <h1>Dashboard</h1>
      
      <VocoUsageBar 
        metric="pdf_generated" 
        label="PDFs Generated This Month"
      />
      
      <VocoUsageBar 
        metric="api_calls" 
        label="API Calls"
        color="blue"
      />
    </div>
  );
}

API Reference

Server Methods

  • increment(userId, metric, amount) - Increment usage counter
  • checkLimit(userId, metric) - Check if within limit (throws 402 if exceeded)
  • getUsage(userId, metric) - Get current usage statistics
  • resetUsage(userId, metric) - Reset usage counter
  • setLimit(userId, metric, limit) - Update user's limit

React Components

  • <VocoUsageBar metric="name" label="Label" /> - Usage progress bar

Configuration Example

// vocoweb.config.ts
export const config = {
  limits: {
    pdf_generated: { 
      free: 10, 
      pro: 100, 
      enterprise: 1000 
    },
    api_calls: { 
      free: 1000, 
      pro: 10000, 
      enterprise: 100000 
    },
  },
  resetPeriod: 'monthly', // 'daily', 'weekly', 'monthly'
};

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

Database Schema

CREATE TABLE usage_metrics (
  id UUID PRIMARY KEY DEFAULT uuid_generate_v4(),
  user_id UUID NOT NULL REFERENCES auth.users(id) ON DELETE CASCADE,
  metric TEXT NOT NULL,
  current_usage INTEGER DEFAULT 0,
  limit_value INTEGER NOT NULL,
  reset_at TIMESTAMPTZ NOT NULL,
  created_at TIMESTAMPTZ DEFAULT NOW(),
  UNIQUE(user_id, metric)
);

License

MIT © VocoWeb

Support


Built with care by VocoWeb