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
- Host: GitHub
- URL: https://github.com/polymeilex/gjs-rs
- Owner: PolyMeilex
- Created: 2024-07-08T01:29:02.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-08T01:31:14.000Z (almost 2 years ago)
- Last Synced: 2025-04-02T06:37:18.397Z (about 1 year ago)
- Language: Rust
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
}
```