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

#196 in #js

Download history 28/week @ 2024-12-07 1/week @ 2024-12-14

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

~73MB
~1.5M SLoC