3 个版本
0.1.2 | 2021年12月23日 |
---|---|
0.1.1 | 2021年2月28日 |
0.1.0 | 2021年2月17日 |
82 在 #runtime
在 crabzilla 中使用
9KB
144 行
Crabzilla
Crabzilla 提供了一个 简单 的接口,用于与 Rust 代码一起运行 JavaScript 模块。
示例
use crabzilla::*;
use std::io::stdin;
#[import_fn(name = "read", scope = "Stdin")]
fn read_from_stdin() -> Value {
let mut buffer = String::new();
println!("Type your name: ");
stdin().read_line(&mut buffer)?;
buffer.pop(); // Remove newline
if buffer.is_empty() {
throw!("Expected name!");
}
json!(buffer)
}
#[import_fn(name = "sayHello", scope = "Stdout")]
fn say_hello(args: Vec<Value>) {
if let Some(Value::String(string)) = args.get(0) {
println!("Hello, {}", string);
}
}
#[tokio::main]
async fn main() {
let mut runtime = runtime! {
read_from_stdin,
say_hello,
};
if let Err(error) = runtime.load_module("./module.js").await {
eprintln!("{}", error);
}
}
在 module.js
const user = Stdin.read();
Stdout.sayHello(user);
依赖项
~1.5MB
~35K SLoC