import_fn 0.1.0

Implementation of #[import_fn] macro for Crabzilla
Documentation

Crabzilla

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

Example

use crabzilla::*;
use std::io::stdin;

#[import_fn]
fn read_from_stdin() -> Value {
    let mut buffer = String::new();
    println!("Type your name: ");
    stdin().read_line(&mut buffer)?;
    buffer.pop();
    Value::String(buffer)
}

#[import_fn]
fn say_hello(args: Vec<Value>) {
    if let Some(string) = args.get(0) {
        if let Value::String(string) = string {
            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 = read_from_stdin();
say_hello(user);