13 releases (7 breaking)
0.9.0-alpha | Nov 12, 2023 |
---|---|
0.8.1 | Jun 5, 2023 |
0.8.0 | May 3, 2023 |
0.7.0 | Sep 13, 2022 |
0.3.1 | Nov 15, 2021 |
#55 in #bindgen
276 downloads per month
Used in 4 crates
(via deno_bindgen)
41KB
1K
SLoC
deno_bindgen
This tool aims to simplify glue code generation for Deno FFI libraries written in Rust.
Install
Install the command-line via cargo
:
cargo install deno_bindgen_cli
Usage
use deno_bindgen::deno_bindgen;
// Export `add` function to JavaScript.
#[deno_bindgen]
fn add(a: u32, b: u32) -> u32 {
a + b
}
Use the exported functions directly in ESM with TypeScript typings
import { add } from "./bindings/mod.ts";
add(1, 2);
Design
The tool is designed to make it very easy to write high performance FFI
bindings. A lot of the things have been redesigned in 0.10
to prevent perf
footguns.
TypeScript types are generated and supported OOTB.
All class handles support disposing memory via the Explicit Resource Management
API (using
).
#[deno_bindgen]
pub struct Foo;
#[deno_bindgen]
impl Foo {
#[constructor]
pub fn new() -> Self {
Self
}
pub fn bar(&self) {
// ...
}
}
import { Foo } from "@ffi/example";
{
using foo = new Foo();
foo.bar();
// foo is disposed here...
}
High performance. Codegen tries its best to take the fastest possible path for all bindings as-if they were written by hand to properly leverage the power of the Deno FFI JIT calls.
> make bench
cpu: Apple M1
runtime: deno 1.38.0 (aarch64-apple-darwin)
file:///Users/divy/gh/deno_bindgen/example/bench.js
benchmark time (avg) iter/s (min … max) p75 p99 p995
--------------------------------------------------------------- -----------------------------
add 6.88 ns/iter 145,297,626.6 (6.78 ns … 13.33 ns) 6.81 ns 8.22 ns 9.4 ns
bytelen 8.05 ns/iter 124,278,976.3 (7.81 ns … 18.1 ns) 8.09 ns 10.39 ns 11.64 ns
Publishing
By default, deno_bindgen generates bindings for local development. To publish a
cross-platform binding, you can use the --lazy-init
flag, this gives you full
control on how you want to host pre-built shared libraries and pull them in at
runtime.
deno_bindgen --release --lazy-init
import { add, load } from "./example/mod.ts";
import { cache } from "https://deno.land/x/cache/mod.ts";
// Download the shared library from a CDN
const file = await cache("https://example.com/example.so");
load(file.path);
add(1, 2);
Dependencies
~0.9–1.8MB
~38K SLoC