Crates.io | scriptit |
lib.rs | scriptit |
version | 0.4.0 |
source | src |
created_at | 2020-08-31 14:51:02.594 |
updated_at | 2020-10-21 17:40:35.744052 |
description | scriptit is a simple way to run JavaScript code in Rust (native+wasm) |
homepage | |
repository | https://github.com/rricard/scriptit/ |
max_upload_size | |
id | 283104 |
size | 34,811 |
scriptit is a simple way to run JavaScript code in Rust
scriptit will run your JS differently depending on your platform:
You can call rust functions from JS.
I wanted to be able to do scripting in my rust applications, I do not need a fully-fledged embedding of v8 like node or deno and the only use here is as a library, so you get to choose what to inject.
Additionally I want to write most of my rust apps with a possible wasm target: as we likely have a js engine when running rust code on wasm targets, I thought about using the js interpreter on the host. This makes scriptit an extremely lightweight way to run scripts in wasm as we use host capabilities to do so!
Due to those goals, scriptit will not give you the same amount of control that you would have embedding v8 yourself and will give you worst ergonomics than just using wasm_bindgen. It is unfortunately ruled by the lowest common denominators on both apis (v8 & wasm_bindgen).
See the documentation for an example.
scriptit is extremely experimental, I wouldn't use it for anything now, at least not before the following is done:
See the issues for more details.