1.0.1 • Published 6 years ago

runjsoncli v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

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