https://github.com/eknkc/zquickjs
High level quickjs bindings for zig
https://github.com/eknkc/zquickjs
Last synced: about 2 months ago
JSON representation
High level quickjs bindings for zig
- Host: GitHub
- URL: https://github.com/eknkc/zquickjs
- Owner: eknkc
- Created: 2024-05-29T15:14:47.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-30T14:25:14.000Z (about 1 year ago)
- Last Synced: 2025-02-17T02:18:48.155Z (5 months ago)
- Language: Zig
- Size: 45.9 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# zquickjs
[](https://eknkc.github.io/zquickjs/)
A Zig binding for [QuickJS](https://bellard.org/quickjs/).
This is **work in progress** and not ready for production use.## Installation
```sh
zig fetch --save https://github.com/eknkc/zquickjs/archive/refs/heads/master.tar.gz
```Add the following to your `build.zig`:
```zig
const zquickjs = b.dependency("zquickjs", .{
.target = target,
.optimize = optimize,
});exe.root_module.addImport("zquickjs", zquickjs.module("zquickjs"));
```## License
MIT