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

@adoratorio/aion

v1.0.1

Published

A js RAF engine

Readme

Aion

A lightweight requestAnimationFrame (rAF) engine with a shared frame queue.

Installation

npm install @adoratorio/aion

Usage

This package is ESM-only. Import it as a module:

import Aion from '@adoratorio/aion';

const engine = new Aion();
engine.start();

Configuration

Aion accepts an options object with the following properties:

| Parameter | Type | Default | Description | | :-------- | :--: | :-----: | :---------- | | autostop | boolean | true | Automatically stops the engine when the frame queue is empty, preventing idle processing. | | debug | boolean | false | Enable namespaced console.warn diagnostics for recoverable issues (contract violations always throw). |

Methods

Queue Management

Aion acts as a centralized engine where you can add or remove multiple callbacks that will all run synced on the same requestAnimationFrame loop.

// Add a handler to the frame queue
// You can provide a custom ID, otherwise one is generated.
// Returns the ID (or null if the ID is a duplicate).
const myId = engine.add((delta, frameId) => {
  console.log(`Time since last frame: ${delta}ms`);
}, 'my-custom-id');

// Remove a handler from the queue by its ID.
// Removing from inside a handler is safe: the entry is detached once the
// current frame has finished, so no other handler is skipped.
engine.remove('my-custom-id');

// Check whether a handler ID is currently registered
const exists = engine.has('my-custom-id');

Engine Control

// Start the rAF loop manually
engine.start();

// Stop the rAF loop. The already scheduled frame is skipped; pass `true`
// to also cancel it right away.
engine.stop();
engine.stop(true);

Browser Support & SSR

Aion is designed for browser environments and relies on window.requestAnimationFrame and performance.now(). Instantiating it outside of a browser environment without proper polyfills will throw an error.

TypeScript Support

Aion is entirely written in TypeScript and exports specific types like AionOptions, AionQueueObject, and AionHandler.

Maintenance and compatibility

See MAINTAINERS.md, CONTRIBUTING.md and CHANGELOG.md. Historical contributor credits are retained. The CI runtime is Node 24; DOM instances are client-only. Imports are SSR-safe. The runtime expects native ES2023 support; TypeScript does not provide browser polyfills. DOM functionality uses requestAnimationFrame, Pointer/Touch Events and observers where applicable. Test the target browser matrix before release.

A callback exception is propagated unchanged and stops the engine. Pending removals are cleaned up; remove or repair the failing callback, then call start() explicitly. Other callbacks are not run after the exception in that frame. With autostop enabled, an empty queue stops at the end of the frame; start(); add(handler) in the same synchronous turn remains supported.