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 |
#158 in #js
167 downloads per month
Used in jstime
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