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

epubsub-react

v1.0.0

Published

React hooks for EPubSub - a lightweight publish-subscribe library for React applications

Downloads

5

Readme

EPubSub React

React hooks for EPubSub - a lightweight publish-subscribe library for React applications.

Features

  • 🎯 Custom hooks for React components
  • 🔄 Automatic cleanup on component unmount
  • 💪 TypeScript support
  • ⚡ Efficient state updates
  • 🎨 Easy integration with React components

Installation

npm install epubsub-react
# or
yarn add epubsub-react
# or
pnpm add epubsub-react

Usage

Basic Usage

import { usePublish, useSubscribe } from 'epubsub-react';

// Publisher Component
function MessageSender() {
  const publish = usePublish<string>('chat');

  const sendMessage = () => {
    publish('Hello from React!');
  };

  return <button onClick={sendMessage}>Send Message</button>;
}

// Subscriber Component
function MessageReceiver() {
  const { events } = useSubscribe<string>('chat');

  return (
    <div>
      {events.map((event, index) => (
        <p key={index}>{event.data}</p>
      ))}
    </div>
  );
}

Advanced Usage with TypeScript

interface UserEvent {
  id: number;
  name: string;
  status: 'online' | 'offline';
}

// Component that needs the latest user status
function UserStatus() {
  const event = useSingleSubscribe<UserEvent>('userStatus');

  if (!event) return <div>Loading...</div>;

  return (
    <div>
      User {event.data.name} is {event.data.status}
    </div>
  );
}

// Component that updates user status
function StatusUpdater() {
  const publish = usePublish<UserEvent>('userStatus');

  const updateStatus = (status: 'online' | 'offline') => {
    publish({
      id: 1,
      name: 'John',
      status,
    });
  };

  return (
    <div>
      <button onClick={() => updateStatus('online')}>Set Online</button>
      <button onClick={() => updateStatus('offline')}>Set Offline</button>
    </div>
  );
}

Available Hooks

usePubSub<T>

Creates or retrieves a singleton instance of EPubSub for a given namespace.

const pubsub = usePubSub<T>(namespace: string)

usePublish<T>

Returns a function to publish events to a specific namespace.

const publish = usePublish<T>(namespace: string)

useSubscribe<T>

Subscribes to events in a namespace and returns an array of received events.

const { events } = useSubscribe<T>(
  namespace: string,
  options?: {
    collectLastEvent?: boolean;
    collectPreviousEvents?: boolean;
    once?: boolean;
  }
)

useSingleSubscribe<T>

Subscribes to a namespace and returns only the latest event. Automatically unsubscribes after receiving the first event.

const event = useSingleSubscribe<T>(namespace: string)

Examples

Real-time Form Synchronization

// Form A - Updates form data
function FormA() {
  const publish = usePublish<FormData>('form-sync');

  const handleChange = (e) => {
    publish({
      field: e.target.name,
      value: e.target.value,
    });
  };

  return <input name="username" onChange={handleChange} />;
}

// Form B - Receives updates
function FormB() {
  const { events } = useSubscribe<FormData>('form-sync');
  const lastEvent = events[events.length - 1];

  return (
    <div>
      Last update: {lastEvent?.data.field} = {lastEvent?.data.value}
    </div>
  );
}

Global Notifications

// Notification Publisher
function NotificationSender() {
  const publish = usePublish<string>('notifications');

  return (
    <button onClick={() => publish('New notification!')}>
      Send Notification
    </button>
  );
}

// Notification Display
function NotificationDisplay() {
  const { events } = useSubscribe<string>('notifications', {
    collectLastEvent: true,
  });

  return (
    <div className="notifications">
      {events.map((event, index) => (
        <div key={index} className="notification">
          {event.data}
          <small>{event.timestamp.toLocaleString()}</small>
        </div>
      ))}
    </div>
  );
}