deno_bindgen

This tool aims to simplify glue code generation for Deno FFI libraries written in Rust.

QuickStart

Annotate on top of Rust fn, struct and enum to make them available to Deno.

```rust // add.rs use denobindgen::denobindgen;

[deno_bindgen]

pub struct Input { a: i32, b: i32, }

[deno_bindgen]

fn add(input: Input) -> i32 { input.a + input.b } ```

Invoke the CLI to compile and generate bindings:

shell $ deno_bindgen

And finally import the generated bindings in your JS

```typescript // add.ts import { add } from "./bindings/bindings.ts";

add({ a: 1, b: 2 }); // 3 ```

Installation

shell deno install -Afrq -n deno_bindgen https://deno.land/x/deno_bindgen/cli.ts

Add the following dependencies to your crate.

```toml

Cargo.toml

[dependencies] deno_bindgen = "0.8.0" serde = { version = "1", features = ["derive"] } ```

Change your crate-type to cdylib and set your package name as well.

toml [lib] name = "___" crate-type = ["cdylib"]

Bindings

Put #[deno_bindgen] on top of a "serde-deriavable" struct, enum or fn.

struct (named fields)

These transform into Typescript types.

```rust // lib.rs

[deno_bindgen]

pub struct A { b: Vec>, } ```

becomes:

typescript // bindings/bindings.ts export type A = { b: Array<Array<string>>; };

enum

Enums become type unions in Typescript.

```rust

[deno_bindgen]

pub enum Event { Quit, MouseMove { x: i32, y: i32, } } ```

becomes:

typescript export type Enum = | "quit" | { mouse_move: { x: number; y: number; }; };

fn

Functions are exposed through the FFI boundaries.

```rust

[deno_bindgen]

fn greet(name: &str) { println!("Hello, {}!", name); } ```

becomes:

typescript export function greet(name: string) { // ... glue code for calling the // symbol. }

Notes

CLI

The deno_bindgen CLI tool provides the following flags: