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

exprify

v1.0.3

Published

A powerful math expression parser and evaluator with runtime data-type checking

Readme

Exprify

Exprify Social Banner

Exprify is a JavaScript expression parser and evaluator for math-heavy apps. It supports arithmetic, variables, custom functions, unit conversion, matrices, complex numbers, symbolic helpers, and a growing set of linear algebra utilities.

Installation

npm install exprify

Quick Start

import Exprify from "exprify";

const expr = new Exprify();

console.log(expr.evaluate("5 + 7 * 2"));
// 19

expr.setVariable("x", 10);
console.log(expr.evaluate("x + 5"));
// 15

Browser Usage

<script src="https://unpkg.com/exprify"></script>
<script>
  const expr = new Exprify();
  console.log(expr.evaluate("(10 + 5) * 2"));
</script>

unpkg resolves to the browser bundle from dist/exprify.min.js.

API

new Exprify()

Creates a new evaluator instance with isolated state for:

  • variables
  • functions
  • units
  • compiled-expression cache

expr.evaluate(expression)

Parses and evaluates an expression string.

expr.evaluate("10 + 5 * 2");
// 20

expr.parse(expression)

Returns { tokens, ast }.

const parsed = expr.parse("2 inch to cm");
console.log(parsed.tokens);
console.log(parsed.ast);

expr.compile(expression)

Compiles an expression once and returns a reusable function.

const area = expr.compile("width * height");

console.log(area({ width: 6, height: 4 }));
// 24

expr.setVariable(name, value) / expr.getVariable(name)

Stores and reuses values across evaluations.

expr.setVariable("x", 10);
expr.setVariable("y", 5);

console.log(expr.evaluate("x + y * 2"));
// 20

expr.addFunction(name, fn)

Registers a custom JavaScript function.

expr.addFunction("double", (n) => n * 2);

console.log(expr.evaluate("double(5) + 3"));
// 13

Inline Function Definitions

You can define functions inside expressions.

expr.evaluate("hyp(a, b) = sqrt(a ^ 2 + b ^ 2)");

console.log(expr.evaluate("hyp(3, 4)"));
// 5

Features

Arithmetic

expr.evaluate("2 + 3 * 4");
// 14

expr.evaluate("(2 + 3) * 4");
// 20

expr.evaluate("11n ^ 2n");
// 121n

Strings, Booleans, Complex Numbers

expr.evaluate('"Hello " + "World"');
// "Hello World"

expr.evaluate("true && false");
// false

expr.evaluate("9 / 3 + 2i");
// "3 + 2i"

Unit Conversion

expr.evaluate("2 inch to cm");
// "5.08 cm"

expr.evaluate("5 cm + 2 inch");
// "10.08 cm"

expr.evaluate("5cm + 0.2 m in inch");
// "9.84251968503937 inch"

expr.evaluate("a = 5.08 cm + 2 inch");
expr.evaluate("a to inch");
// "4 inch"

Matrices

Exprify supports matrix literals with ; as row separators.

expr.evaluate("a = [1, 2, 3; 4, 5, 6]");
// {"exprify":"DenseMatrix","data":[[1,2,3],[4,5,6]],"size":[2,3]}

expr.evaluate("a[2, 3]");
// 6

expr.evaluate("a[1:2, 2]");
// "2\n5"

expr.evaluate("a[3, 1:3] = [7, 8, 9]");
// "7\t8\t9"

expr.evaluate("det([-1, 2; 3, 1])");
// -7

Linear Algebra Helpers

expr.evaluate("lup([[2, 1], [1, 4]])");
// {"L":{"exprify":"DenseMatrix",...},"U":{"exprify":"DenseMatrix",...},"p":[0,1]}

expr.evaluate("lyap([[-2, 0], [1, -4]], [[3, 1], [1, 3]])");
// {"exprify":"DenseMatrix","data":[[0.75,0.2916666666666667],[0.2916666666666667,0.44791666666666663]],"size":[2,2]}

expr.evaluate("qr([[1, -1, 4], [1, 4, -2], [1, 4, 2], [1, -1, 0]])");
// {"Q":{"exprify":"DenseMatrix",...},"R":{"exprify":"DenseMatrix",...}}

expr.evaluate("polynomialRoot(-6, 11, -6, 1)");
// [1,3,2]

Available helpers currently include det, lsolve, lup, lyap, qr, and polynomialRoot.

Algebra Helpers

expr.evaluate('simplify("2x + x")');
// "3 * x"

expr.evaluate('derivative("2x^2 + 3x + 4", "x")');
// "4 * x + 3"

expr.evaluate('rationalize("2x/y - y/(x+1)", true)');
// {"numerator":"2 * x ^ 2 + 2 * x - y ^ 2","denominator":"x * y + y","coefficients":[],"variables":["x","y"],"expression":"(2 * x ^ 2 + 2 * x - y ^ 2) / (x * y + y)"}

Parse and AST Utilities

expr.evaluate('leafCount("e^(i*pi)-1")');
// 4

expr.evaluate('leafCount(parse("{a: 22/7, b: 10^(1/2)}"))');
// 5

Built-in Functions

Common built-ins include:

  • max, min, abs, round, floor, ceil, sqrt, pow
  • sin, cos, tan, asin, acos, atan
  • log, log10, exp, random
  • clamp, if, length, typeof
  • det, lsolve, lup, lyap, qr, polynomialRoot
  • simplify, derivative, rationalize, leafCount, parse

Return Types

Depending on the expression, evaluate() may return:

  • numbers / bigint / booleans
  • strings
  • formatted unit strings like "5.08 cm"
  • formatted complex strings like "3 + 2i"
  • matrix wrapper JSON strings such as {"exprify":"DenseMatrix",...}
  • JSON strings for structured helper outputs like lup() or rationalize(..., true)

Manual Build

git clone https://github.com/code-hemu/Exprify.git
cd Exprify
npm install
npm run build

Build output is written to dist/.

Testing

npm test

License

Exprify is licensed under GPL-3.0. Copyright (c) Nirmal Paul.

Contributing

  1. Fork the repository.
  2. Create a branch: git checkout -b feature/your-feature
  3. Commit your changes: git commit -m "Add your feature"
  4. Push your branch and open a pull request.