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

@simple-product/sdk

v0.1.2

Published

Simple Product SDK - Track users and product usage

Readme

@simple-product/sdk

Track users and product usage with Simple Product.

Installation

npm install @simple-product/sdk

Quick Start

import { SimpleProduct } from '@simple-product/sdk';

// Initialize once in your app
const sp = new SimpleProduct({
  apiKey: 'sk_your_api_key',
});

// Identify users when they sign in
sp.identify({
  userId: user.id,
  email: user.email,
  name: user.name,
  company: user.company,
});

// That's it! Analytics are now tracked automatically.

How It Works

The SDK automatically sends a heartbeat event once per day per user. This single event powers:

  • DAU/WAU/MAU - Daily, weekly, monthly active users
  • Retention - Cohort retention analysis
  • Stickiness - DAU/MAU engagement ratio

No configuration needed. Just identify your users and analytics happen automatically.

API Reference

new SimpleProduct(config)

Create a new SDK instance.

const sp = new SimpleProduct({
  apiKey: 'sk_your_api_key',        // Required
  endpoint: 'https://...',           // Optional, defaults to production
  disableAutoHeartbeat: false,       // Optional, disable auto-tracking
  debug: false,                      // Optional, enable console logging
});

sp.identify(params)

Identify a user. Call this when a user signs in.

sp.identify({
  userId: 'user_123',          // Required - your internal user ID
  email: '[email protected]',   // Optional
  name: 'Jane Doe',            // Optional
  company: 'Acme Inc',         // Optional
  traits: {                    // Optional - any additional data
    plan: 'pro',
    role: 'admin',
  },
});

sp.track(event, properties?)

Track a custom event.

sp.track('feature_used', {
  feature: 'export_report',
  format: 'csv',
});

sp.reset()

Reset the user. Call this when a user signs out.

sp.reset();

sp.destroy()

Clean up SDK resources. Call this if you need to remove the SDK.

sp.destroy();

React Integration (Recommended)

The easiest way to integrate is with our React provider:

// app/providers.tsx
'use client';

import { SimpleProductProvider } from '@simple-product/sdk/react';

export function Providers({ children, user }) {
  return (
    <SimpleProductProvider
      apiKey={process.env.NEXT_PUBLIC_SP_API_KEY!}
      user={user ? {
        id: user.id,
        email: user.email,
        name: user.name,
      } : null}
    >
      {children}
    </SimpleProductProvider>
  );
}

The provider automatically:

  • Calls identify() when user changes
  • Sends heartbeats once per day
  • Resets on logout

Track Custom Events

import { useSimpleProduct } from '@simple-product/sdk/react';

function MyComponent() {
  const { track } = useSimpleProduct();

  return (
    <button onClick={() => track('button_clicked', { button: 'signup' })}>
      Sign Up
    </button>
  );
}

Manual Setup

If you're not using React, you can use the SDK directly:

import { SimpleProduct } from '@simple-product/sdk';

const sp = new SimpleProduct({
  apiKey: process.env.NEXT_PUBLIC_SP_API_KEY!,
});

// When user logs in
sp.identify({
  userId: user.id,
  email: user.email,
  name: user.name,
});

// Track custom events
sp.track('feature_used', { feature: 'export' });

// On logout
sp.reset();

License

MIT