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

chronokinesis

v8.0.0

Published

Module for testing time-dependent code

Readme

chronokinesis

Build Coverage Status

Mock time and date for traveling and freezing. Inspired and borrowed from timekeeper.

Introduction

Mock Date and Date.now in order to help you test time-dependent code. Provides travel, freeze, and timezone functionality for your Node.js tests.

Examples

import * as ck from 'chronokinesis';

ck.freeze();

setTimeout(() => {
  // Frozen
  console.log(new Date());

  ck.reset();
}, 2000);

With arguments:

import * as ck from 'chronokinesis';
import assert from 'node:assert';

ck.freeze(1980, 0, 1);

assert.equal(true, ck.isKeepingTime());
assert.deepEqual(new Date(), new Date(1980, 0, 1));

ck.reset();

or use with luxon:

import { DateTime } from 'luxon';
import * as ck from 'chronokinesis';

ck.travel(DateTime.now().plus({ year: 1 }).toMillis());

setTimeout(() => {
  console.log('Traveled with Luxon DateTime one year and some', new Date());

  ck.reset();
}, 2000);

or use with moment:

import moment from 'moment';
import * as ck from 'chronokinesis';

ck.travel(moment().add(1, 'year'));

setTimeout(() => {
  console.log('Traveled with Moment Date one year and some', new Date());

  ck.reset();
}, 2000);

API Reference

freeze([...args])

Freeze point in time. Calls can be made with the same arguments as the Date constructor.

  • ...args: Optional date constructor arguments, if empty stops time at now
import * as ck from 'chronokinesis';

ck.freeze('1942-01-08');

setTimeout(() => {
  // Frozen
  console.log(new Date());

  ck.reset();
}, 2000);

travel([...args])

Time travel to another era. Calls can be made with the same arguments as the Date constructor

  • ...args: Optional date constructor arguments, pretty useless if empty but won´t crash
import * as ck from 'chronokinesis';
let date = new Date(2018, 0, 31);

ck.travel(date);

setTimeout(function () {
  console.log(new Date());
  ck.reset();
}, 1500);

When used in combination with freeze the time is still frozen but at the travelled time().

import * as ck from 'chronokinesis';
import moment from 'moment';

let date = new Date(2018, 0, 31);

ck.freeze(date);

ck.travel(moment().add(1, 'year'));

setTimeout(function () {
  console.log(`Still frozen but one year ahead ${new Date()}`);

  ck.reset();
}, 1500);

defrost()

Defrost a frozen point in time. Used in combination with travelling will start ticking the clock.

import * as ck from 'chronokinesis';

ck.freeze(1980, 0, 1);

// Travel one year
ck.travel(1981, 1, 1);

// Start ticking
ck.defrost();

setTimeout(() => {
  // Tick tack
  console.log(new Date());

  ck.reset();
}, 2000);

reset()

Resets Date to current glory.

import * as ck from 'chronokinesis';

ck.freeze(2060, 0, 1);
console.log(`end of time is reached at ${new Date()} according to Newton`);

ck.reset();

// Today
console.log(new Date());

isKeepingTime()

Utility function to see if we still travel or freeze time.

import * as ck from 'chronokinesis';

console.log(ck.isKeepingTime() ? 'Is' : 'Not', 'keeping time');
ck.travel(1893448800000);
console.log(ck.isKeepingTime() ? 'Is' : 'Not', 'keeping time');

ck.reset();

timezone(timeZone[, ...args])

Travel to time zone.

  • timeZone: IANA time zone string
  • ...args: Optional travel to date arguments

Returns TimeZoneTraveller api

import * as ck from 'chronokinesis';

ck.reset();

const tz = ck.timezone('Asia/Shanghai');

console.log('Now in Shanghai', new Date());

tz.freeze();

ck.reset();

new TimeZoneTraveller(timeZone)

Time zone traveller api.

import { TimeZoneTraveller, reset } from 'chronokinesis';

const timezone = new TimeZoneTraveller('Asia/Shanghai');

timezone.freeze();

reset();

timezone.freeze([...args])

Freeze at the specific timezone.

timezone.travel([...args])

Start traveling in the specific timezone.

timezone.reset()

Same as #reset

timezone.defrost()

Same as #defrost

Distributions

The module is prepared for browser and nodejs.

Nodejs require

const ck = require('chronokinesis');

Browser (UMD)

Use dist/chronokinesis.cjs. Sets global property chronokinesis.

High-resolution clocks

process.hrtime, process.hrtime.bigint() and performance.now() are mocked alongside Date while timekeeping is active. The fake clocks stay on the native monotonic scale — each freeze(T) / travel(T) call shifts them by (T − previousMockedMs), so readings before and after the mock are directly comparable. freeze() additionally locks the value so repeated reads return the same result. reset() clears the shift and restores the native functions by identity.

Because the fake and native axes are aligned, a pre-mock baseline can be diffed meaningfully against a reading taken after travelling forward:

import * as ck from 'chronokinesis';

const baseHr = process.hrtime.bigint();
const basePerf = performance.now();
const baseMs = Date.now();

ck.freeze(baseMs);
ck.travel(baseMs + 1000);

console.log(Number(process.hrtime.bigint() - baseHr) / 1e6); // ≈ 1000 (ms)
console.log(performance.now() - basePerf); //                    ≈ 1000 (ms)

ck.reset();

chronokinesis vs node:test mock timers

chronokinesis mocks clocks onlyDate, process.hrtime, performance.now. Timers (setTimeout, setInterval, setImmediate) still run on the real wall clock; a setTimeout(fn, 10) under freeze() still fires ~10ms later in real time.

Node's built-in node:test provides mock.timers which is different: it mocks both the clock and the timer queue, and mock.timers.tick(ms) synchronously advances time and fires any timers scheduled within that window — no real waiting required.

Rule of thumb:

  • Use chronokinesis to pin the wall-clock/timezone to a specific moment while letting real timers run — e.g. you want new Date() to return 1980-01-01 but your setTimeout(..., 10) should still take 10ms.
  • Use node:test mock.timers to fast-forward deterministically through timer-based logic without waiting real time.
  • Don't enable both simultaneously; they both own Date.

Caveats when mocking high-resolution clocks

Swapping process.hrtime and performance.now is generally safe — fetch, AbortSignal.timeout, setTimeout, setInterval, and other libuv-backed APIs are unaffected (they use uv_hrtime, which chronokinesis does not touch). A few things are worth knowing:

  • performance.mark + performance.measure across a mock boundary are meaningless. A mark captured before freeze()/travel() and a measure taken after produces a fabricated duration — the hrtime axis shifted by the mock delta in between.
  • Long-lived resources with hrtime-based idle or keep-alive timers (database pools, HTTP keep-alive, gRPC deadlines) may misbehave if they were acquired before the mock. Prefer to mock before creating such resources and reset after tearing them down.
  • Tracing / metrics / structured logging (pino, OpenTelemetry, APM agents) will emit bogus timestamps under mock. Fine for unit tests; don't assert on telemetry timing in mocked phases.
  • Monotonicity holds within a single freeze() or travel() phase, but not across them — reset() snaps back to native, and travel(past) can move values backwards relative to earlier readings.

Acknowledgements

chronokinesis initial code is inspired and borrowed from timekeeper