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

@anephenix/measure

v0.1.19

Published

A measurement framework from Anephenix

Downloads

94

Readme

Measure

A measurement framework from Anephenix

npm version example workflow Socket Badge

What is Measure?

Measure is a lightweight statistical library for Node.js and browser environments. It lets you collect a series of numeric or date values in memory and immediately run statistical analysis on them — no external database or data-science runtime required.

When would I use it?

  • You're sampling sensor readings, API response times, or CPU metrics and want to spot trends on the fly.
  • You're building a dashboard that needs a live mean, median, or moving average without shipping a full analytics stack.
  • You want to gate some behaviour on a statistical condition (e.g. "alert me once the mean latency exceeds 500 ms").
  • You're collecting timestamped events and want a quick breakdown by hour, day of week, or year.

Install

npm i @anephenix/measure

Requirements

  • Node.js 22+

Features

1. Recording values

Create a Measure instance and push values into it one at a time or in bulk.

import Measure from '@anephenix/measure';

const measure = new Measure(); // type defaults to 'sample'

measure.record(42);
measure.record([17, 23, 8]);

// Access the raw list at any time
console.log(measure.recordings); // [42, 17, 23, 8]

The type option controls how variance and standard deviation are calculated:

| type | Use when… | |--------------|---------------------------------------------------------| | 'sample' | Your recordings are a sample of a larger population (default) | | 'population' | Your recordings are the full population | | 'date' | You are recording Date objects (see §6 below) |


2. Descriptive statistics

Once you have recordings you can derive the most common summary statistics.

const m = new Measure();
m.record([4, 7, 7, 2, 9]);

m.mean();    // 5.8  — arithmetic average
m.median();  // 7    — middle value when sorted
m.mode();    // [7]  — most frequent value(s); returns an array
m.counts();  // { '2': 1, '4': 1, '7': 2, '9': 1 }

All methods return null when there are no recordings yet.

mode() returns an array because a dataset can be multimodal:

const m = new Measure();
m.record([1, 1, 2, 2, 3]);
m.mode(); // [1, 2]

3. Spread and variability

Understand how spread out your recordings are.

const m = new Measure({ type: 'sample' });
m.record([2, 4, 4, 4, 5, 5, 7, 9]);

m.variance(); // 4.571…
m.stdev();    // 2.138…

Use type: 'population' to divide by N instead of N−1:

const pop = new Measure({ type: 'population' });
pop.record([2, 4, 4, 4, 5, 5, 7, 9]);

pop.variance(); // 4      (exact population variance)
pop.stdev();    // 2

4. Standard score (Z-score)

Find out how many standard deviations a particular value sits from the mean.

const m = new Measure();
m.record([10, 20, 30, 40, 50]);

m.zscore(30); // 0    — exactly on the mean
m.zscore(50); // 1.26 — above average
m.zscore(10); // -1.26

5. Simple Moving Average (SMA)

Smooth out noise by computing a rolling average over the last N recordings.

const m = new Measure();
m.record([1, 2, 3, 4, 5, 6]);

// Window of 3 — each value is the average of the current and two preceding values
m.simpleMovingAverage(3); // [1, 1.5, 2, 3, 4, 5]

// No window size — returns a cumulative average at each point
m.simpleMovingAverage(); // [1, 1.5, 2, 2.5, 3, 3.5]

This is useful when you want to display a trend line that isn't thrown off by individual spikes.


6. Date analysis

Use type: 'date' to record Date objects and count how many fall into each bucket for a given time unit.

const dateMeasure = new Measure({ type: 'date' });

dateMeasure.record(new Date('2024-01-15T10:30:00'));
dateMeasure.record(new Date('2024-03-20T14:00:00'));
dateMeasure.record(new Date('2025-01-15T10:45:00'));

dateMeasure.countBy('year');      // { '2024': 2, '2025': 1 }
dateMeasure.countBy('month');     // { '0': 2, '2': 1 }   (0-based: 0 = Jan)
dateMeasure.countBy('dayOfWeek'); // { '1': 1, '3': 2 }   (0-based: 0 = Sun)
dateMeasure.countBy('hour');      // { '10': 2, '14': 1 }

Supported units: 'year', 'month', 'date', 'dayOfWeek', 'hour', 'minute', 'second', 'millisecond'

countBy() returns null when there are no recordings yet.


7. Target tracking

Define a statistical goal up front and check whether your recordings have hit it.

const m = new Measure({
  target: { stat: 'mean', operator: '>', value: 80 },
});

m.record([72, 85, 91, 78, 88]);

m.targetAchieved(); // true  (mean is 82.8)

m.targetStatus();
// {
//   target:   { stat: 'mean', operator: '>', value: 80 },
//   actual:   82.8,
//   achieved: true,
// }

targetAchieved() returns null before any recordings are added.

Supported stats for targets: 'mean', 'median', 'mode', 'variance', 'stdev', 'zscore'

Supported operators: '>', '<', '>=', '<=', '='

// Target examples for each stat
new Measure({ target: { stat: 'median',   operator: '>=', value: 85  } });
new Measure({ target: { stat: 'mode',     operator: '=',  value: 3   } }); // passes when mode array includes 3
new Measure({ target: { stat: 'variance', operator: '<',  value: 2   } });
new Measure({ target: { stat: 'stdev',    operator: '<=', value: 1.5 } });
new Measure({ target: { stat: 'zscore',   operator: '>',  value: 0.5, input: 4 } });

For zscore targets, supply an input field — the value whose z-score is computed against the current recordings.


Examples

The examples/ folder contains runnable scripts that show the library being used in realistic scenarios. Each file can be run with node examples/<filename> after building the library (npm run build).

| File | What it demonstrates | |------|----------------------| | financial-analysis.js | Compares stocks in a sector across revenue growth, P/E ratio, and profit margin. Uses z-scores to rank companies and flag outliers that may be high-performers or anomalies. | | system-benchmark.js | Benchmarks a Node.js workload across 20 runs using performance.now() and the os module. Reports mean, median, standard deviation, and an SMA trend that reveals JIT warm-up effects. | | log-analysis.js | Analyses timestamped application log entries to find patterns — which hours, days of the week, and months see the most errors and warnings. | | price-chart.js | Computes 7-day and 20-day SMAs for daily closing prices, checks for a golden-cross buy signal using target tracking, and draws all three series as an ASCII chart in the terminal. | | csv-export.js | Records simulated sensor readings, enriches each value with its z-score and SMA, then writes both a per-reading CSV and a summary statistics CSV using Node.js fs — a starting point for persisting or exporting any Measure data. |


Development

Running tests

npm test

Running tests with coverage

npm run cover

Linting

npm run lint

Auto-formatting

npm run format

Bundle size check

npm run size

To see a breakdown of what is contributing to the bundle size:

npm run analyze

License and Credits

© 2026 Anephenix Ltd. Measure is licensed under the MIT license.