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

@marianmeres/batch

v1.1.0

Published

[![JSR](https://jsr.io/badges/@marianmeres/batch)](https://jsr.io/@marianmeres/batch) [![NPM](https://img.shields.io/npm/v/@marianmeres/batch)](https://www.npmjs.com/package/@marianmeres/batch)

Readme

@marianmeres/batch

JSR NPM

A lightweight, generic batch processor that collects items and flushes them based on configurable triggers.

Features

  • Interval mode - flush at fixed time intervals
  • Amount mode - flush when item count reaches threshold
  • Combined mode - flush on whichever trigger fires first
  • Safety cap - prevents unbounded memory growth
  • Graceful shutdown - drain() flushes remaining items before stopping
  • Debug logging - optional verbose logging with custom logger support
  • Svelte store compatible - reactive subscriptions for UI binding
  • TypeScript - fully typed with generics

Installation

# Deno
deno add jsr:@marianmeres/batch

# Node.js
npm install @marianmeres/batch

Quick Start

import { BatchFlusher } from "@marianmeres/batch";

// Create a batcher that flushes every 5 seconds
const batcher = new BatchFlusher<string>(
  async (items) => {
    console.log("Flushing:", items);
    await sendToServer(items);
    return true;
  },
  {
    flushIntervalMs: 5000,
    maxBatchSize: 1000,
  }
);

// Add items - they'll be batched and flushed automatically
batcher.add("event-1");
batcher.add("event-2");

// When done, gracefully shutdown (flushes remaining items and stops)
await batcher.drain();

Flush Modes

// Interval mode: flush every 5 seconds
{ flushIntervalMs: 5000, maxBatchSize: 100 }

// Amount mode: flush when 50 items collected
{ flushIntervalMs: 0, flushThreshold: 50, maxBatchSize: 100 }

// Combined mode: flush every 5s OR when 50 items collected
{ flushIntervalMs: 5000, flushThreshold: 50, maxBatchSize: 100 }

Use Cases

  • Log aggregation
  • Metrics collection
  • Event batching
  • Database write batching
  • API request batching

State Awareness

The batcher exposes two readonly properties for monitoring its internal state:

  • isRunning - Whether automatic interval-based flushing is active. Useful for verifying the batcher has started/stopped correctly, or for conditional logic based on batcher state.

  • isFlushing - Whether a flush operation is currently in progress. Useful for debugging, logging, or UI indicators showing when data is being sent.

if (batcher.isRunning) {
  console.log("Batcher is active");
}

if (batcher.isFlushing) {
  console.log("Flush in progress...");
}

Reactive Subscriptions (Svelte Store Compatible)

The batcher implements the Svelte store contract, allowing reactive subscriptions to state changes:

// state.size, state.isRunning, state.isFlushing
const unsubscribe = batcher.subscribe((state) => {
  console.log(state);
});
// Later: unsubscribe();

State updates are emitted on:

  • Item added (size changes)
  • Buffer reset (size changes)
  • Flush start/end (isFlushing changes, size changes)
  • Start/stop (isRunning changes)

API

See API.md for full API documentation.

License

MIT