#light #js #lib #run

rust_js_runtime

一个轻量级的库,您可以在 Rust 中运行 JavaScript

2 个版本

0.1.1 2024 年 7 月 9 日
0.1.0 2024 年 7 月 9 日

54#light

Download history 173/week @ 2024-07-04 34/week @ 2024-07-11 2/week @ 2024-07-25

209 每月下载量

MIT 许可证

5KB
79

一个轻量级的库,您可以在 Rust 中运行 JavaScript。

使用方法

lazy_static! {
    pub static ref JS_EXECUTOR: Arc<JsExecutor> = JsExecutor::new(32);
}
let res: Result<serde_json::Value, Error> = JS_EXECUTOR.execute("1+1").await;
println!("===> res: {:?}", res);

依赖项

~93MB
~2M SLoC