runjsoncli
v1.0.1
Published
Run any javascript code in command line
Downloads
1
Maintainers
Readme
JS-RUN
Execute javascript code from command line without having to go inside node interpreter.Perk is that all these would be platform independent
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