quickjs-rusty
quickjs-rusty copied to clipboard
A rusty QuickJS (QuickJS-NG) Javascript engine wrapper, and more.
As per this [issue](https://github.com/theduke/quickjs-rs/issues/4) in the old repo. I tested the solution and it works (the example evaluates a list of expressions given an Object as global): ```rust pub fn...
can I register my rust native modules with something like "JS_AddModuleExport" function? seems like there is no way to get quickjs runtime pointer from quickjs_rusty::Context, there is no such method...
As quickjs (the normal version) has its own optimizations that quickjs-ng doesnt have like con/rope strings, it'd be nice for quickjs-rusty to have optional support for quickjs (the original one,...