Facilitating high-level interactions between Wasm modules and JavaScript
Go to file
Muhammad Hamza 0b5f0eec2f
Bump versions for v0.2.88 (#3676)
* bump

* Bump version in changelog

* Bump date in changelog

Co-authored-by: Liam Murphy <liampm32@gmail.com>

---------

Co-authored-by: GitHub Actions <actions@github.com>
Co-authored-by: daxpedda <daxpedda@gmail.com>
Co-authored-by: Liam Murphy <liampm32@gmail.com>
2023-11-01 20:35:23 +05:00
.cargo Clippy: Fixes and CI (#3300) 2023-05-17 12:02:02 +02:00
.github Configure git in bump workflow (#3675) 2023-10-31 17:21:41 +05:00
benchmarks Bump MSRV to v1.57 (#3657) 2023-10-16 13:08:13 +02:00
crates Bump versions for v0.2.88 (#3676) 2023-11-01 20:35:23 +05:00
examples Bump versions for v0.2.88 (#3676) 2023-11-01 20:35:23 +05:00
guide rename main -> start on wasm-bindgen(start) example (#3648) 2023-10-11 09:40:58 +02:00
releases Add a template for release announcements 2018-06-19 12:05:52 -07:00
src use Vec's try_reserve_exact method (#3656) 2023-10-14 02:59:22 +05:00
tests Return an error if there are two enums with the same name (#3669) 2023-10-26 10:58:22 +02:00
_package.json Add missing CSS loaders for todomvc app (#3535) 2023-08-09 09:43:55 +10:00
.gitattributes add .gitattributes to mark WebIDL as vendored 2018-07-11 18:48:51 -04:00
.gitignore Worker tests (#3351) 2023-04-26 19:09:15 +05:00
build.rs Implement AsRef<JsValue> for Closure<T> 2018-09-06 14:46:59 -07:00
Cargo.toml Bump versions for v0.2.88 (#3676) 2023-11-01 20:35:23 +05:00
CHANGELOG.md Bump versions for v0.2.88 (#3676) 2023-11-01 20:35:23 +05:00
CONTRIBUTING.md fix contributing docs url (#2043) 2020-03-17 09:09:46 -05:00
LICENSE-APACHE Add license texts 2017-12-18 14:45:06 -08:00
LICENSE-MIT Add license texts 2017-12-18 14:45:06 -08:00
publish.rs Bumped crate versions (#3079) 2022-09-12 09:26:21 -05:00
README.md Add cargo-binstall support to wasm-bindgen (#3544) 2023-08-05 15:36:26 +02:00
webdriver.json Worker tests (#3351) 2023-04-26 19:09:15 +05:00

wasm-bindgen

Facilitating high-level interactions between Wasm modules and JavaScript.

Build Status Crates.io version Download docs.rs docs

Guide | API Docs | Contributing | Chat

Built with 🦀🕸 by The Rust and WebAssembly Working Group

Install wasm-bindgen-cli

You can install it using cargo install:

cargo install wasm-bindgen-cli

Or, you can download it from the release page.

If you have cargo-binstall installed, then you can install the pre-built artifacts by running:

cargo binstall wasm-bindgen-cli

Example

Import JavaScript things into Rust and export Rust things to JavaScript.

use wasm_bindgen::prelude::*;

// Import the `window.alert` function from the Web.
#[wasm_bindgen]
extern "C" {
    fn alert(s: &str);
}

// Export a `greet` function from Rust to JavaScript, that alerts a
// hello message.
#[wasm_bindgen]
pub fn greet(name: &str) {
    alert(&format!("Hello, {}!", name));
}

Use exported Rust things from JavaScript with ECMAScript modules!

import { greet } from "./hello_world";

greet("World!");

Features

  • Lightweight. Only pay for what you use. wasm-bindgen only generates bindings and glue for the JavaScript imports you actually use and Rust functionality that you export. For example, importing and using the document.querySelector method doesn't cause Node.prototype.appendChild or window.alert to be included in the bindings as well.

  • ECMAScript modules. Just import WebAssembly modules the same way you would import JavaScript modules. Future compatible with WebAssembly modules and ECMAScript modules integration.

  • Designed with the "Web IDL bindings" proposal in mind. Eventually, there won't be any JavaScript shims between Rust-generated wasm functions and native DOM methods. Because the wasm functions are statically type checked, some of those native methods' dynamic type checks should become unnecessary, promising to unlock even-faster-than-JavaScript DOM access.

Guide

📚 Read the wasm-bindgen guide here! 📚

You can find general documentation about using Rust and WebAssembly together here.

API Docs

License

This project is licensed under either of

at your option.

Contribution

See the "Contributing" section of the guide for information on hacking on wasm-bindgen!

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.