Skip to content

tchigher/jstime

 
 

Repository files navigation

jstime

Another JavaScript Runtime

jstime logo. Kinda looks like shrek

Using the binary

You can find the latest jstime binary on the release page

Alternatively you can install with cargo

$ cargo install jstime

As a repl

$ jstime

Welcome to jstime!

>>

Run a script

$ cat hello-world.js
console.log("hello world");

$ jstime hello-world.js
hello world

It's a library too!

use jstime::script;

fn main() {
  script::run("console.log('hello world')");
}

TODO

About

another runtime

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 80.8%
  • JavaScript 19.2%