Skip to content

Crabzilla provides a simple interface for running JavaScript modules alongside Rust code.

License

Notifications You must be signed in to change notification settings

andyherbert/crabzilla

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Crabzilla

Crabzilla provides a simple interface for running JavaScript modules alongside Rust code.

Example

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

In module.js:

const user = Stdin.read();
Stdout.sayHello(user);

About

Crabzilla provides a simple interface for running JavaScript modules alongside Rust code.

Resources

License

Stars

Watchers

Forks

Packages

No packages published