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

engageplus

v1.0.0

Published

Set up EngagePlus authentication in your project — zero friction, AI-agent friendly

Readme

engageplus

Zero-friction authentication setup for developers. One command to get EngagePlus authentication running in any web project — designed for vibe coding with AI assistants like Cursor.

Quick Start

npx engageplus init

That's it. The CLI will:

  1. Open your browser — sign in with GitHub, Google, or any provider
  2. Create an organization — or select an existing one
  3. Generate an API key — full management API access
  4. Register your redirect URIhttp://localhost:PORT/callback
  5. Write config files:
    • .env.local — credentials for your app
    • .cursor/rules/engageplus.mdc — AI agent instructions

Usage

# Interactive setup (shows login widget)
npx engageplus init

# Auto-login with a specific provider
npx engageplus init --github
npx engageplus init --google
npx engageplus init --microsoft

What Gets Written

.env.local

ENGAGEPLUS_ORG_ID=your_org_id
ENGAGEPLUS_API_KEY=epk_your_key
ENGAGEPLUS_API_BASE=https://api.engageplus.id
ENGAGEPLUS_AUTH_BASE=https://auth.engageplus.id

.cursor/rules/engageplus.mdc

A comprehensive rule file that teaches your AI assistant how to:

  • Add the EngagePlus login widget to any framework (React, Vue, Svelte, vanilla JS)
  • Handle OAuth callbacks
  • Configure authentication providers via the Management API
  • Set up webhooks for auth events
  • Connect Supabase or Airtable for user data sync
  • Customize the widget theme and branding

After Setup

Just tell your AI assistant what you need:

  • "Add a login page to my app"
  • "Set up Google and GitHub authentication"
  • "Connect my Supabase database to sync user data"
  • "Add a webhook to notify my backend on login"

The AI reads .cursor/rules/engageplus.mdc and knows your org ID, API key, and how to use every EngagePlus API.

Requirements

  • Node.js 18+
  • A browser (for the one-time authentication step)

How It Works

┌─────────────┐     ┌──────────────┐     ┌──────────────────┐
│  Your CLI    │────▶│  Browser     │────▶│  EngagePlus Auth  │
│  (terminal)  │◀────│  (localhost) │◀────│  (OIDC/OAuth)     │
└──────┬───────┘     └──────────────┘     └──────────────────┘
       │
       ▼
┌──────────────┐     ┌──────────────────┐
│  Create Org  │────▶│  Generate API Key │
└──────┬───────┘     └────────┬─────────┘
       │                      │
       ▼                      ▼
  .env.local         .cursor/rules/engageplus.mdc

The CLI starts a temporary local server, opens your browser for authentication, receives the tokens, then uses them to set up your organization and API key. All credentials are written to local files — nothing is stored externally.

Links