Skip to content

Latest commit

 

History

History
41 lines (24 loc) · 1.02 KB

README.md

File metadata and controls

41 lines (24 loc) · 1.02 KB

matheval is a node.js library that evaluates simple math expressions. Supports variables, parentheses, basic functions.

Example

var evaluate = require('matheval').evaluate;

evaluate('x = 1', console.log); // prints 1
evaluate('x + 1', console.log); // prints 2

Installation

$ npm install matheval

Variables

You can override Variables.js to supply your own variables (for example, you can load them from a database or something)

var evaluate = require('./matheval.js').evaluate;
var Variables = require('./matheval.js').Variables;

var v = new Variables();

evaluate('x = 1', v, function(result) {
    console.log(result);
    evaluate('x + 1', v, console.log);
});

Notes

unary minus is higher precedence than exponentiation, so -1**-2 === (-1)(-2), not -(1(-2))

exponentiation is right-associative, so 333 is 327, not 93

Testing

The tests rely on mocha and should

To run them:

$ npm test