63 个版本 (重大变更)

0.54.0 2024年7月30日
0.52.0 2024年7月10日
0.50.0 2024年3月8日
0.47.0 2023年11月20日
0.15.0 2020年10月19日

#162 in #js

Download history 166/week @ 2024-06-03 8/week @ 2024-06-10 2/week @ 2024-06-17 127/week @ 2024-07-08 9/week @ 2024-07-15 132/week @ 2024-07-22 157/week @ 2024-07-29

每月425次下载
用于 jstime

Apache-2.0

20KB
437 行代码(不包括注释)

jstime Core 包

此包的主要依赖是 rusty_v8,它提供了 V8-Rust 绑定。

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");
}

依赖

~76MB
~1.5M SLoC