63 releases (breaking)

0.54.0 Jul 30, 2024
0.52.0 Jul 10, 2024
0.50.0 Mar 8, 2024
0.47.0 Nov 20, 2023
0.15.0 Oct 19, 2020

#1453 in Asynchronous

Download history 26/week @ 2024-09-16 137/week @ 2024-09-23 3/week @ 2024-09-30 1/week @ 2024-10-07 429/week @ 2024-12-09

429 downloads per month
Used in jstime

Apache-2.0

20KB
437 lines

jstime Core Crate

The main dependency of this crate is rusty_v8 which provides the V8-Rust bindings.

API

use jstime_core as jstime;

fn main() {
    jstime::init(None);
    let mut scope = jstime::JSTime::new(
        jstime::Options::default()
    );
    scope.run_script("console.log('Hello, World!');", "jstime")
        .expect("ruhroh something went wrong");
}

Dependencies

~67MB
~1.5M SLoC