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

explaints

v0.1.1

Published

Self-explaining computed values

Readme

Build Status codecov npm

ExplainTS: self-explaining computed values

Motivation

Imagine the salary of your employees starts at 2000$ and every year it grows by 5% of this original amount. You have an API that allows your employees to check what their income will be after a certain number of years.

Your API could simply work like this:

> getExpectedIncome({years: 19})
  3900

But, if the rules to compute that value become complex, involving many different parameters, it could be better to return not only the value, but also the way it was computed:

> getExpectedIncome({years: 19})
  {
       value: 3900,
       reason: "expected salary",
       method: "sum",
       sources: [
           {
               value: 2000,
               reason: "base salary",
               method: "fixed",
           },
           {
               value: 1900,
               reason: "expected bonus",
               method: "mult",
               sources: [
                   {
                       value: 2000,
                       reason: "base salary",
                       method: "fixed",
                   },
                   {
                       value: 0.05,
                       reason: "yearly bonus (5%)",
                       method: "fixed",
                   },
                   {
                       value: 19,
                       reason: "years of work",
                       method: "input",
                   },
               ],
           },
       ],
   }

This brings several advantages:

  • transparency: all values that affect the final result are clearly visible, allowing the client to understand how a result was obtain and to re-execute all the steps to guarantee correctness
  • reactivity: parameters may be referenced in more computation trees; updating a parameter will automatically affect all values that are directly or indirectly computed from it
  • efficiency: the tree of values can be created, once and for all, at startup; after that, it can be reused and patched as needed; changes to the parameters are applied to the computed values lazily, i.e. only when the values are requested again

Example

import * as ets from "explaints";

interface Parameters
{
    years_of_work: number;
}

const baseSalary = ets.makeComputed("base salary", 2000, "fixed");

const expectedSalary = ets.makeComputed("expected salary", "sum", 0, "sum", [
                           base,
                           ets.makeComputed("expected bonus", "mult", 1, "mult", [
                               base,
                               ets.makeComputed("yearly bonus (5%)", 0.05, "fixed"),
                               ets.makeComputed("years of work", (params: Parameters) => params.years_of_work, "input"),
                           ]),
                       ]);

function getExpectedIncome(params: Parameters)
{
    return expectedSalary.explain(params);
}