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

harmonic-entropy

v0.3.1

Published

Compute harmonic entropy of a musical interval

Readme

harmonic-entropy

Compute harmonic entropy of musical intervals.

Installation

npm i harmonic-entropy

Documentation

npm run doc

What this package provides

This package exposes:

  • precalculateRatios(options): precomputes rational pairs used by the entropy algorithm.
  • harmonicEntropy(options, ratios): computes a tabulated entropy curve as [cents, entropy] pairs.
  • EntropyCalculator: convenient class for evaluating intervals (ofCents, ofFraction) with cached tables.

Options reference

HarmonicEntropyOptions fields (all optional):

  • N: max rational complexity.
    • default for series: 'tenney': 10000
    • default for series: 'farey': 1000
  • s: Gaussian frequency deviation (default 0.01)
  • a: Rényi order (default 1, evaluated numerically near Shannon entropy)
  • series: 'tenney' | 'farey' (default 'tenney')
  • minCents: lower tabulation bound (default 0)
  • maxCents: upper tabulation bound (default 2400)
  • res: tabulation step in cents (default 1)
  • normalize: divide by Hartley entropy term (default false)

Example: entropy table for a range

import {
  type HarmonicEntropyOptions,
  harmonicEntropy,
  precalculateRatios,
} from 'harmonic-entropy';

const options: HarmonicEntropyOptions = {
  N: 10000,
  s: 0.01,
  a: 1,
  series: 'tenney',
  minCents: 0,
  maxCents: 2400,
  res: 1,
  normalize: false,
};

// Compute the set of rational numbers to consider.
const ratios = precalculateRatios(options);

// Compute the table of [cents, entropy] pairs. Entropy is measured in natural (base e) units.
const table = harmonicEntropy(options, ratios);

// This would be replaced by passing the table your favorite plotting library.
console.log(table);

/*
[
  [0, 2.465367706139234],
  [1, 2.4695232705775982],
  [2, 2.481975530994572],
  [3, 2.5026079139822173],
  [4, 2.5312627678840913],
  [5, 2.5676902925403278],
  ...
  [2399, 3.900196510219676],
  [2400, 3.898697709259859],
]
*/

Example: evaluate individual intervals

import {EntropyCalculator} from 'harmonic-entropy';

const entropy = new EntropyCalculator({maxCents: 1200});

// Evaluate by cents.
const perfectFifth = entropy.ofCents(700);

// Evaluate by ratio.
const pureFifth = entropy.ofFraction('3/2');

// Numeric input is interpreted as a frequency ratio.
const sameFifth = entropy.ofFraction(3 / 2);

// Tablulated values are linearly interpolated
const majorSixth = entropy.ofFraction('5/3');

console.log({perfectFifth, pureFifth, majorSixth});
/*
{
  perfectFifth: 4.126342260377048,
  pureFifth:    4.121900707092091,
  majorSixth:   4.42017406844399,
}
*/

Serialization and revival

import {EntropyCalculator} from 'harmonic-entropy';

const calc = new EntropyCalculator({N: 1000});
const serialized = JSON.stringify(calc);

const revived = JSON.parse(serialized, EntropyCalculator.reviver);

console.log(revived.ofCents(700));
// 4.126342260377048

Notes and caveats

  • Constructing EntropyCalculator performs precomputation immediately.
  • Lower res (finer step) usually improves interpolation fidelity but costs more memory/time.
  • ofCents rejects values outside [minCents, maxCents].

Background reading