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

@asteby/metacore-notifications

v6.0.0

Published

Metacore notifications — dropdown, app badge, WebSocket-driven real-time updates

Readme

@asteby/metacore-notifications

Metacore notifications kit — a drop-in bell-icon dropdown, app-badge hook (Badging API) and WebSocket integration for real-time push updates.

Install

pnpm add @asteby/metacore-notifications \
  @asteby/metacore-ui @asteby/metacore-websocket \
  date-fns lucide-react sonner @tanstack/react-query react react-dom

This package declares its UI, WebSocket, date, icon and toast libraries as peerDependencies — the consumer installs them once at the app level.

Usage

import { NotificationsDropdown } from '@asteby/metacore-notifications/dropdown'
import { WebSocketProvider } from '@asteby/metacore-websocket/provider'
import { api } from '@/lib/api' // your injected axios-compatible client
import { useNavigate } from '@tanstack/react-router'

export function Header() {
  const navigate = useNavigate()
  return (
    <WebSocketProvider url="wss://api.example.com/ws" getToken={getToken}>
      <NotificationsDropdown
        apiClient={api}
        apiBasePath="/data/notifications/me"
        enableBadge
        onNotificationClick={(n) => {
          if (n.link) navigate({ to: n.link })
          else if (n.conversation_id)
            navigate({ to: '/chats', search: { id: n.conversation_id } })
        }}
      />
    </WebSocketProvider>
  )
}

apiBasePath lets each host application point at its own notifications endpoint, for example:

  • "/data/notifications/me"
  • "/dynamic/notifications/me"

Props

| Prop | Type | Default | Notes | |----------------------------|-------------------------------------------|----------|-------| | apiClient | NotificationsApiClient (axios-compatible) | — | Never imported as a singleton — inject it. | | apiBasePath | string | — | e.g. /data/notifications/me. | | enableBadge | boolean | true | Drives navigator.setAppBadge(). | | onNotificationClick | (n: NotificationItem) => void | — | Navigate however you like. | | perPage | number | 20 | Initial fetch size. | | locale | date-fns Locale | es | Used by formatDistanceToNow. | | labels | Partial<NotificationsDropdownLabels> | — | i18n overrides. | | subscribeToNotifications | (onMessage) => void \| () => void | — | Bring-your-own subscription (skips useWebSocketMessage). |

Hooks

import { useAppBadge, useNotifications } from '@asteby/metacore-notifications/hooks'
  • useAppBadge(){ badgeCount, setBadge, clearBadge } — wraps the PWA Badging API with a no-op fallback.
  • useNotifications(){ permission, isSupported, requestPermission, isGranted, isDenied, isDefault } — tracks the browser's Notification.permission state.

API contract

The component expects the injected HTTP client to behave like axios:

  • GET {apiBasePath} with query { orderBy, orderDir, per_page } returning { data: { data: NotificationItem[] } }.
  • PATCH {apiBasePath}/{id} with body { is_read: true }.

WebSocket messages are expected under the discriminator type: 'NOTIFICATION' with a payload shaped like NotificationWsPayload.

License

Apache-2.0