77 releases
new 0.3.76 | Dec 7, 2024 |
---|---|
0.3.74 | Nov 30, 2024 |
0.3.69 | Mar 4, 2024 |
0.3.66 | Nov 28, 2023 |
0.0.1 | Jul 19, 2018 |
#4 in Web programming
4,065,249 downloads per month
Used in 29,570 crates
(1,393 directly)
11MB
201K
SLoC
web-sys
Raw bindings to Web APIs for projects using wasm-bindgen
.
Crate features
This crate by default contains very little when compiled as almost all of its
exposed APIs are gated by Cargo features. The exhaustive list of features can be
found in crates/web-sys/Cargo.toml
, but the rule of thumb for web-sys
is
that each type has its own cargo feature (named after the type). Using an API
requires enabling the features for all types used in the API, and APIs should
mention in the documentation what features they require.
How to add an interface
If you don't see a particular web API in web-sys
, here is how to add it.
-
Copy the WebIDL specification of the API and place it in a new file in the
webidls/unstable
folder. You can often find the IDL by going to the MDN docs page for the API, scrolling to the bottom, clicking the "Specifications" link, and scrolling to the bottom of the specification page. For example, the bottom of the MDN docs on the MediaSession API takes you to the spec. The very bottom of that page is the IDL. -
Annotate the functions that can throw with
[Throws]
-
cd crates/web-sys
-
Run
cargo run --release --package wasm-bindgen-webidl -- webidls src/features ./Cargo.toml
If formatting fails, you can run
cargo fmt
in thecrates/web-sys
directory. On Windows, you might also want to runcargo fmt -- --config newline_style=Unix
depending on your git configuration. -
Run
git add .
to add all the generated files into git. -
Add an entry in CHANGELOG.md like the following
... ## Unreleased ### Added ... * Added <your addition> [#1234](https://github.com/rustwasm/wasm-bindgen/pull/1234) # <- link to your PR