An open API service indexing awesome lists of open source software.

https://github.com/miguelzacca/calc

Simple command line calc with Node.js and mathjs.
https://github.com/miguelzacca/calc

Last synced: about 2 months ago
JSON representation

Simple command line calc with Node.js and mathjs.

Awesome Lists containing this project

README

        

# calc

Simple command line calc with Node.js and mathjs.

## Install - Linux

```bash
git clone https://github.com/miguelzacca/calc.git
cd ~/calc
npm ci
chmod +x config.sh src/index.js
./config.sh
cd ~/
```

## Install - Windows

```bash
git clone https://github.com/miguelzacca/calc.git
cd %HOMEPATH%/calc
npm ci
config.bat
cd %HOMEPATH%
```

## Use

```bash
calc
```

## Example

```bash
calc 10+9*(2/3)-87
```

output:

```txt
-71
```