An open API service indexing awesome lists of open source software.

https://github.com/polymeilex/gjs-rs

GJS Rust bindings
https://github.com/polymeilex/gjs-rs

Last synced: about 1 year ago
JSON representation

GJS Rust bindings

Awesome Lists containing this project

README

          

# GJS-rs

```rs
fn main() {
let ctx = gjs::Context::new();

ctx.eval("console.log('Hello world!')", "main.js").unwrap();
}
```