59 releases (38 breaking)

0.50.0 Mar 8, 2024
0.48.0 Jan 8, 2024
0.47.0 Nov 20, 2023
0.46.0 Sep 22, 2022
0.15.0 Oct 19, 2020

#182 in #js

Download history 14/week @ 2024-01-08 28/week @ 2024-02-12 9/week @ 2024-02-19 36/week @ 2024-02-26 150/week @ 2024-03-04 26/week @ 2024-03-11 2/week @ 2024-03-18 154/week @ 2024-04-01

154 downloads per month
Used in jstime

Apache-2.0

19KB
436 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

~74MB
~1.5M SLoC