A simple command line calculator built with Node
Download, fork, or clone this project onto your local machine. Then navigate to it's location with your terminal and simply install with npm install
.
$~/root/calc npm install
To use, simply pass the command calc
followed by whatever equation you want to run.
$ calc 2+3*15-1*5
[ 42 ]
The calculator can handle addition, subtraction, multiplication, and division on whole numbers. Fractions and parenthesis not currently supported (but will be added in the future).