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

app-notifications

v1.0.0

Published

Adapter-first TypeScript library for in-app notifications

Readme

app-notifications

Adapter-first TypeScript library for in-app notifications.

This package is currently experimental and is being evaluated in a real project.

Repository: github.com/amireldor/app-notifications

License: MIT

What It Does

The package provides a small notifications service API and a pluggable persistence boundary:

  • create notifications
  • prevent duplicates with dedupeKey
  • list notifications with cursor pagination
  • get unread count
  • mark one notification as read
  • mark all notifications as read

The package is intentionally scoped to in-app notifications. It does not handle email, push, workflows, or archive behavior in V1.

Install

npm install app-notifications

If you use the optional Supabase adapter:

npm install app-notifications @supabase/supabase-js

Core Usage

Construct the service with any implementation of NotificationsStore:

import { createNotificationsService } from "app-notifications";
import { InMemoryNotificationsStore } from "app-notifications";

const notifications = createNotificationsService({
  store: new InMemoryNotificationsStore(),
});

Example:

await notifications.create({
  id: crypto.randomUUID(),
  userId: "user-123",
  type: "review_helpful",
  title: "+5 credits earned",
  body: "Your review was marked helpful.",
  dedupeKey: "review_helpful:feedback-456",
  data: {
    feedbackId: "feedback-456",
    amount: 5,
  },
  createdAt: new Date(),
});

const page = await notifications.list("user-123", { limit: 20 });
const unread = await notifications.getUnreadCount("user-123");

await notifications.markRead("user-123", page.items[0].id, {
  readAt: new Date(),
});

Public Surface

Core exports include:

  • createNotificationsService
  • InMemoryNotificationsStore
  • NotificationsError
  • NotificationNotFoundError
  • InvalidCursorError
  • notification and store contract types

Important behaviors:

  • create() returns { kind: "inserted" | "duplicate", notification }
  • list ordering is newest-first
  • pagination uses an opaque cursor backed by createdAt + id
  • timestamps use Date

Adapters

The package is adapter-first. The core library does not require any specific database or ORM.

Current adapter entrypoints:

  • app-notifications Core package and in-memory reference adapter
  • app-notifications/supabase Supabase-backed NotificationsStore plus migration SQL export

Supabase

For Supabase projects, use the dedicated guide:

That guide covers:

  • installing the Supabase adapter dependency
  • copying the shipped SQL migration into supabase/migrations
  • applying the migration with your normal Supabase workflow
  • constructing SupabaseNotificationsStore

Development

Build:

npm run build

Test:

npm test

Publishing

This package is intended to be published publicly on npm.

Before publishing:

npm test
npm pack --dry-run

Then publish:

npm publish

The package is configured to:

  • build on prepack
  • publish as a public package
  • include built output from dist/
  • include the shipped SQL migration and Supabase adapter docs