An open API service indexing awesome lists of open source software.

https://github.com/plume-org/canapi-stdweb

Canapi Fetcher for StdWeb
https://github.com/plume-org/canapi-stdweb

canapi rest rust stdweb wasm xhr

Last synced: 6 months ago
JSON representation

Canapi Fetcher for StdWeb

Awesome Lists containing this project

README

          

# Canapi-StdWeb

`Fetch` implementation for WASM projects.

```rust
use canapi_stdweb::WebFetch;

use my_api;

fn main() {
let user = my_api::users.get::(1).expect("fetch user");
println!("{:?}", user);
}
```