wasm-bindgen/examples/fetch
Alex Crichton 88618116ac
Add support for #[wasm_bindgen] on async fn (#1754)
This commit adds support to attach `#[wasm_bindgen]` on an `async fn`
which will change the return value into a `Promise` in JS. This in
theory has the exact same semantics as an `async` function in JS where
you call it with all the arguments, nothing happens and you get a
promise back, and then later the promise actually resolves.

This commit also adds a helper trait, `IntoJsResult`, to allow `async`
functions with multiple kinds of return values instead of requiring
everything to be `Result<JsValue, JsValue>`.
2019-09-06 13:47:16 -05:00
..
src Add support for #[wasm_bindgen] on async fn (#1754) 2019-09-06 13:47:16 -05:00
Cargo.toml Default all async support to std::future (#1741) 2019-09-05 11:18:36 -05:00
index.js chore: upgrade @wasm-tool/wasm-pack-plugin to 1.0.1 2019-08-27 18:20:24 +01:00
package.json chore: upgrade @wasm-tool/wasm-pack-plugin to 1.0.1 2019-08-27 18:20:24 +01:00
README.md docs: update docs link 2019-05-26 16:43:00 +09:00
webpack.config.js Convert all examples to using wasm-pack 2019-01-17 08:37:32 -08:00

The fetch API

View documentation for this example online or View compiled example online

You can build the example locally with:

$ npm run serve

and then visiting http://localhost:8080 in a browser should run the example!