Run any javascript code in command line
npm install runjsoncli
npm install -g runjsoncli
`
Usage
This is a command line utility to execute javsacript
Example
-------
`
js execute "Date.now()"
1533099428679
//multline code
$ js execute "let x;
> let y = 10;
> x = y+1;
> "
11
``