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

batching-buffer

v1.0.0-2

Published

A utility for batching events with configurable size limits and timeouts

Readme

batching-buffer

A utility for batching events with configurable size limits and timeouts. Automatically collects items and processes them in batches when either the maximum buffer size is reached or a timeout period elapses.

Installation

npm install batching-buffer
# or
pnpm add batching-buffer
# or
yarn add batching-buffer
# or
bun add batching-buffer

Usage

Basic Example

import { BatchingBuffer } from 'batching-buffer';

const buffer = new BatchingBuffer({
  maxSize: 10,
  callback: (events) => {
    console.log('Processing batch:', events);
    // Process your events here
  },
});

// Add items to the buffer
buffer.add({ id: 1, data: 'item1' });
buffer.add({ id: 2, data: 'item2' });
// ... when 10 items are added, callback is automatically called

With Timeout

import { BatchingBuffer } from 'batching-buffer';

const buffer = new BatchingBuffer({
  maxSize: 10,
  timeout: 5000, // Flush after 5 seconds if buffer is not full
  callback: (events) => {
    console.log('Processing batch:', events);
  },
});

buffer.add({ id: 1 });
// If no more items are added within 5 seconds, callback is called

Manual Flush

const buffer = new BatchingBuffer({
  maxSize: 10,
  callback: (events) => {
    console.log('Processing batch:', events);
  },
});

buffer.add({ id: 1 });
buffer.add({ id: 2 });
buffer.flush(); // Manually trigger processing

API

BatchingBuffer<TEvent>

A generic class that batches events of type TEvent.

Constructor

new BatchingBuffer(config: BatchingBufferConfig<TEvent>)

Configuration

type BatchingBufferConfig<TEvent> = {
  maxSize: number;        // Maximum number of items before auto-flush
  timeout?: number;      // Optional timeout in milliseconds
  callback: (events: TEvent[]) => unknown; // Called when batch is flushed
};

Methods

  • add(item: TEvent): Add an item to the buffer. Automatically flushes when maxSize is reached.
  • flush(): Manually flush the buffer, calling the callback with all current items.
  • buffer: Read-only property that returns the current buffer array.

Behavior

  • Size-based flushing: When maxSize items are added, the buffer automatically flushes.
  • Timeout-based flushing: If timeout is set, the buffer flushes after the timeout period if items were added but the buffer hasn't reached maxSize.
  • Timer management: The timeout timer is automatically cleared when the buffer is flushed due to size limits.
  • Empty buffer protection: Calling flush() on an empty buffer does nothing.

Examples

Logging Events

import { BatchingBuffer } from 'batching-buffer';

const logBuffer = new BatchingBuffer({
  maxSize: 50,
  timeout: 1000,
  callback: (logs) => {
    // Send logs to your logging service
    fetch('/api/logs', {
      method: 'POST',
      body: JSON.stringify(logs),
    });
  },
});

// Throughout your application
logBuffer.add({ level: 'info', message: 'User logged in' });
logBuffer.add({ level: 'error', message: 'Failed to connect' });

Analytics Events

import { BatchingBuffer } from 'batching-buffer';

const analyticsBuffer = new BatchingBuffer({
  maxSize: 20,
  timeout: 30000, // 30 seconds
  callback: (events) => {
    // Send to analytics service
    analytics.trackBatch(events);
  },
});

// Track user actions
analyticsBuffer.add({ event: 'click', element: 'button' });
analyticsBuffer.add({ event: 'view', page: '/home' });

Requirements

  • Node.js 18+ or Bun
  • TypeScript 5+ (for TypeScript projects)

License

MIT