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

infinite-circle

v0.4.0

Published

The utility for synchronising writing operation in browser.

Readme

infinite-circle

The utility for synchronising reading and writing operation in browser. The infinite is a smart and automatic on and off loop for saving resources. It's useful for reading and writing operations on the DOM which may normally cause layout thrashing.

Installation

npm i infinite-circle --save

Usage

import { Circle, Infinite } from 'infinite-circle';

// Define actions which cause running read and write operation
let visibilityCircle = new Circle({
    listen: notify => {
        window.addEventListener('scroll', notify);
        window.addEventListener('resize', notify);
    },
    unlisten: notify => {
        window.removeEventListener('scroll', notify);
        window.removeEventListener('resize', notify);
    }
});

// Define read and write operation
const img1 = document.querySelector('.img1');
let img1CircleId = visibilityCircle.register({
    read: () => {
        let rect = img1.getBoundingClientRect();
        return intersectionPercentage(rect);
    },
    write({ payload }) {
        if (payload > 0) {
            loadImage(img1);
            visibilityCircle.unregister(img1CircleId);
        }
    },
    meta: { interval: 120 } // Optional, default 120
});
// Register more elements as needed

// Register circle to synchronise infinite loop
let infinite = new Infinite();
infinite.add(visibilityCircle);

// other functions
function intersectionPercentage(rect) {
    .
    .
    .
    return percent;
}

function loadImage(imageElement) {
    .
    .
    .
}

Public API

Circle

  • constructor({ listen, unlisten, filter, execute })

    • listen(notify): Function to start listening for events (e.g., addEventListener). Optional.
    • unlisten(notify): Function to stop listening for events. Optional.
    • filter(entry, args): Optional filter function for entries.
    • execute(...args): Optional custom execution logic.
  • register({ read, write, meta }): Register an entry with read and write methods and optional meta (e.g., { interval: 180 }). Returns an entry ID.

  • unregister(id): Remove an entry by ID.

  • getEntries(): Get all registered entries as a Map.

  • subscribe(listener): Subscribe to notifications. listener is called with arguments passed to notify.

  • notify(...args): Notify all observers with the provided arguments.

Infinite

  • constructor(): Create a new Infinite instance.
  • add(circle): Add a Circle instance to be managed.
  • remove(circle): Remove a Circle instance.