🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@armniko/ticker

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@armniko/ticker

A lightweight, zero-dependency JavaScript/TypeScript library for running an application loop with separate logic and draw ticks, time scaling, FPS limiting, and low-FPS detection.

latest
npmnpm
Version
2.3.0
Version published
Maintainers
1
Created
Source

Ticker

npm last published zero dependencies types

A lightweight, zero-dependency JavaScript/TypeScript library for running an application loop with separate logic and draw ticks, time scaling, FPS limiting and low-FPS detection.

Why Ticker?

  • 🎯 Decoupled logic & rendering — update game state and draw frames independently
  • 🎚️ FPS control — cap your draw rate to save CPU/battery
  • ⏱️ Time scaling — slow down or speed up time without touching your game logic
  • 📉 Low-FPS callbacks — react when performance degrades (e.g. lower visual quality)
  • 🧪 Test-friendly — ships with TickerMock for deterministic unit tests
  • 📦 Zero dependencies and fully typed

Installation

npm install @armniko/ticker

Usage

import { Ticker, Time } from '@armniko/ticker';

const element: { position: { x: number, y: number } } = { position: { x: 0, y: 0 } };
const animation: { durationMs: number, distancePx: number } = {
    durationMs: 2000,
    distancePx: 500,
}
const ticker: Ticker = new Ticker();
ticker.addLogicTask((time: Time): void => {
    const pxPerMs: number = animation.distancePx / animation.durationMs;
    element.position.x += pxPerMs * time.deltaMs;
});
ticker.addDrawTask((): void => {
    // draw
});

Ticker instance methods:

  • start() – starts ticker.
  • stop() – stops ticker.
  • isStarted() – checks if ticker is started.
  • setFps(options: { min?: number; max?: number; expected?: number }) - set min, max or expected FPS
    • min (default: 0) – defines value at which lowFps task callbacks will be called.
    • max (default: 60) – defines drawing FPS limit.
    • expected (default: 60) - defines expected logical and drawing FPS at which app should work in normal conditions.
  • setTimeScale(scale: number) – set time scale.
  • addLogicTask(callback) – register callback for update app logic. Returns TickerTaskId.
  • addDrawTask(callback) – register callback for update app screen. Returns TickerTaskId.
  • addLowFpsTask(callback) – register callback that will be called when reached min FPS. Returns TickerTaskId.
  • remove(taskId: TickerTaskId) – removes the provided task.
  • fps() – current FPS at which app operates.
  • timeScale() – current time scale at which app operates.

Migration

v1 -> v2

Before (v1):

import { Ticker } from '@armniko/ticker';

const element: { position: { x: number, y: number } } = { position: { x: 0, y: 0 } };
const animation: { durationMs: number, distancePx: number } = {
    durationMs: 2000,
    distancePx: 500,
}
const ticker: Ticker = new Ticker({
    onLogicTick: (): void => {
        const pxPerMs: number = distancePx / animationDurationMs;
        element.position.x += pxPerMs * ticker.msBetweenTicks();
    },
    onDrawTick: (): void => {
        // draw element
    },
});
ticker.start();

After (v2):

import { Ticker, Time } from '@armniko/ticker';

const element: { position: { x: number, y: number } } = { position: { x: 0, y: 0 } };
const animation: { durationMs: number, distancePx: number } = {
    durationMs: 2000,
    distancePx: 500,
}
const ticker: Ticker = new Ticker();
ticker.addLogicTask((time: Time): void => {
    const pxPerMs: number = distancePx / animationDurationMs;
    element.position.x += pxPerMs * time.deltaMs;
});
ticker.addDrawTask((): void => {
    // draw element
});
ticker.start();

Changelog

v2.3.0 Added time scale feature.
Minor performance improvements.
Fixed low-fps callback to be called gain after fps recovery.
Fixed edge case bug with a removing task where an incorrect task could be removed.
v2.2.0 Removed minification of build.
Added exports field for proper module resolution and types.
Marked package as side-effect free.
v2.1.1 Updated packages.
v2.1.0 Added option to provide Time for TickerMock.
Migrated from webpack to vite.
v2.0.0 Multiple tick callbacks support.
Added TickerMock for testing.
Deprecated: constructor options, msBetweenTicks(), ticksMissed(). (See migration v1 -> v2)
v1.1.0 Precompiled UMD and ESM.
v1.0.0 Initial version.

Keywords

ticker

FAQs

Package last updated on 03 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts