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 • Rust 包仓库 166/week @ 2024-06-03 • Rust 包仓库 8/week @ 2024-06-10 • Rust 包仓库 2/week @ 2024-06-17 • Rust 包仓库 127/week @ 2024-07-08 • Rust 包仓库 9/week @ 2024-07-15 • Rust 包仓库 132/week @ 2024-07-22 • Rust 包仓库 157/week @ 2024-07-29 • Rust 包仓库

每月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