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

#188 in #js

Download history 114/week @ 2024-07-20 171/week @ 2024-07-27 5/week @ 2024-08-03 3/week @ 2024-08-10 24/week @ 2024-09-14 108/week @ 2024-09-21 34/week @ 2024-09-28 1/week @ 2024-10-05

3,066 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