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.3.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 (with visibility via droppedCount / onDrop)
  • Requeue on error - failed items are put back for retry, not silently lost
  • Serialized flushes - the flusher callback is never invoked in parallel with itself
  • Graceful shutdown - drain() flushes remaining items before stopping
  • 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) => {
    await sendToServer(items);
    return true;
  },
  {
    flushIntervalMs: 5000,
    maxBatchSize: 1000,
  }
);

batcher.add("event-1");
batcher.add("event-2");

// Graceful 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 }

Failure Handling

The flusher callback has three possible outcomes:

| Return / behavior | Result | |-------------------|--------| | Returns true | Success — items consumed | | Returns false | Handled failure — items discarded, boolean propagated to caller, onFlushError not called | | Throws | Unhandled failure — items are requeued at the head of the buffer (subject to maxBatchSize), onFlushError is called, and the error propagates from direct flush() / drain() calls |

Auto-triggered flushes (timer / threshold) always swallow errors — they log (warn level by default, error level if strictFlush: true) but never produce unhandled promise rejections.

const batcher = new BatchFlusher<Event>(
  async (items) => {
    await send(items); // may throw
    return true;
  },
  {
    flushIntervalMs: 5000,
    maxBatchSize: 1000,
    onFlushError: (items, err) => metrics.incr("flush.failed", items.length),
    onDrop: (items) => metrics.incr("flush.dropped", items.length),
  }
);

Use Cases

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

State Awareness

batcher.size;          // items currently buffered
batcher.isRunning;     // interval scheduler is on
batcher.isFlushing;    // a flush is in progress
batcher.droppedCount;  // items discarded by maxBatchSize cap over lifetime

Logging

BatchFlusher emits lifecycle events (start, add, flush, requeue, drop, etc.) through a small Logger interface — any object with debug, log, warn, and error methods. The default is a quiet console-backed logger: warn / error go to console, debug / log are silenced.

import { BatchFlusher, type Logger } from "@marianmeres/batch";

// Default: quiet (warn/error only)
new BatchFlusher(flusher, { flushIntervalMs: 5000, maxBatchSize: 100 });

// Verbose: route everything to console
new BatchFlusher(flusher, {
  flushIntervalMs: 5000,
  maxBatchSize: 100,
  logger: console,
});

// Richer formatting via @marianmeres/clog (now an explicit opt-in;
// no longer a transitive dependency of batch):
import { createClog } from "@marianmeres/clog";
new BatchFlusher(flusher, {
  flushIntervalMs: 5000,
  maxBatchSize: 100,
  logger: createClog("MyBatcher"),
});

Pass anything Logger-shaped — your own structured logger, a test spy, etc. The logger may be swapped at runtime via configure({ logger }).

Reactive Subscriptions (Svelte Store Compatible)

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

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.

Changes in 1.2.0

This release fixes several bugs around concurrency, shutdown, and error handling. Most changes are behavior-preserving for correct usage, but some edge-case behaviors have changed — see below.

Bug fixes (behavior differences are bug fixes)

  • stop() / drain() no longer leak a timer when called while a scheduled flush is in flight. Previously the scheduler could re-arm itself after a stop.
  • start() is now idempotent. Previously, calling start() twice created parallel timer chains.
  • Items are no longer silently lost on flusher throw. They are requeued at the head of the buffer (subject to maxBatchSize).
  • Concurrent flush() calls are now serialized. The flusher callback is never invoked in parallel with itself on the same instance. Previously, a threshold trigger firing alongside an interval tick could overlap.
  • strictFlush: true no longer produces unhandled promise rejections. Errors in auto-triggered flushes are always caught; strictFlush now only controls log severity (error vs warn).
  • configure({ logger }) now takes effect. Previously the logger was cached in the constructor and later updates were silently ignored.

Additive (non-breaking)

  • New config options: onFlushError(items, err), onDrop(items).
  • New readonly property: droppedCount.
  • BatchFlusherConfig is now generic in T (defaults to unknown, so existing untyped usage continues to work).

Potentially breaking (edge cases)

  • configure() throws RangeError on invalid numeric values (maxBatchSize <= 0, negative flushIntervalMs / flushThreshold, non-finite values). Previously these were silently accepted with undefined behavior (e.g. maxBatchSize: 0 effectively disabled the cap).
  • stop() is a no-op if the batcher is not running. Previously it would still emit a state-change notification. This affects only subscribers counting no-op stops.
  • strictFlush: true no longer rethrows from the timer/threshold path. The original behavior (unhandled promise rejection) was a bug; if your code relied on process-level rejection handlers to observe these errors, hook onFlushError instead.
  • Flusher throw now requeues instead of discarding. If you relied on throw = drop (rare), return false instead — that path still discards.
  • Removed docs-only debug config option. It was documented in earlier versions of API.md / AGENTS.md but never implemented. Use a custom logger for verbose output.

Changes in 1.3.0

  • @marianmeres/clog is no longer a dependency. BatchFlusher now uses a small built-in Logger interface and a quiet console-backed default logger. Consumers who want clog formatting must add @marianmeres/clog explicitly and pass logger: createClog("..."). See the Logging section.
  • Logger type is now exported from @marianmeres/batch. Use it to type custom loggers without depending on clog.
  • Default logger behavior changed. Previously the default was createClog("BatchFlusher"), which printed via clog (and respected createClog.global.debug). Now debug / log are silent by default and warn / error go to console. Pass logger: console for full verbosity, or a clog instance for the old behavior.

License

MIT