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

@rvanbaalen/signals

v1.0.1

Published

A lightweight, decoupled pub/sub signal system for building reactive web applications with organized state management and clean component communication.

Readme

← See my other Open Source projects

@rvanbaalen/signals

NPM Downloads GitHub License NPM Version

A lightweight, decoupled pub/sub signal system for building reactive web applications with organized state management and clean component communication.

Description

Signals is a minimalist library that implements the signals pattern (also known as pub/sub or event emitter) for JavaScript applications. It helps you build decoupled, reactive components that can communicate without direct dependencies.

Key features:

  • Signal: Basic pub/sub implementation with connect/disconnect lifecycle management
  • SignalGroup: Organize related signals into logical groups
  • Store: Generic state container with integrated signal emission

Installation

Install the package via npm:

npm install @rvanbaalen/signals

Usage

Basic Signal Usage

import { Signal } from '@rvanbaalen/signals';

// Create a signal
const clicked = new Signal();

// Connect a listener (returns a cleanup function)
const cleanup = clicked.connect((x, y) => {
  console.log(`Clicked at ${x}, ${y}`);
});

// Emit the signal
clicked.emit(100, 200); // Logs: "Clicked at 100, 200"

// Cleanup when done
cleanup();

Using SignalGroup

import { SignalGroup } from '@rvanbaalen/signals';

// Create a group of related signals
const userSignals = new SignalGroup();

// Get signals from the group (creates them if they don't exist)
const loggedIn = userSignals.get('loggedIn');
const loggedOut = userSignals.get('loggedOut');

// Connect to signals
loggedIn.connect((user) => {
  console.log(`${user.name} logged in`);
});

// Emit signals
loggedIn.emit({ id: 1, name: 'Alice' });

Using Store

import { createStore } from '@rvanbaalen/signals';

// Create a store with initial state and signal groups
const store = createStore(
  { count: 0, user: null },
  ['counter', 'user']
);

// Connect to signals
store.connect('counter', 'changed', (state, oldState) => {
  console.log(`Count changed from ${oldState.count} to ${state.count}`);
});

// Update state (automatically emits signals)
store.update({ count: store.state.count + 1 }, 'counter', 'changed');

// Select parts of state
const count = store.select('count');
const user = store.select('user');

Advanced Examples

Component Communication

import { SignalGroup } from '@rvanbaalen/signals';

// Create shared signal group
const appSignals = new SignalGroup();

// Component A
class ComponentA {
  constructor() {
    this.cleanup = appSignals.get('dataRequested').connect((id) => {
      const data = this.fetchData(id);
      appSignals.get('dataReady').emit(data);
    });
  }
  
  fetchData(id) {
    return { id, name: 'Example Item' };
  }
  
  destroy() {
    this.cleanup();
  }
}

// Component B (completely decoupled from A)
class ComponentB {
  constructor() {
    this.cleanup = appSignals.get('dataReady').connect((data) => {
      this.updateUI(data);
    });
  }
  
  requestData(id) {
    appSignals.get('dataRequested').emit(id);
  }
  
  updateUI(data) {
    console.log('Updating UI with:', data);
  }
  
  destroy() {
    this.cleanup();
  }
}

Development

# Install dependencies
npm install

# Run development server
npm run dev

# Build for production
npm run build

# Run linter
npm run lint

Contributing

Contributions are welcome! If you have any suggestions, improvements, or bug fixes, please open an issue or submit a pull request.

License

Distributed under the MIT License. See the LICENSE file for more information.