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
- Host: GitHub
- URL: https://github.com/plume-org/canapi-stdweb
- Owner: Plume-org
- Created: 2018-09-15T20:11:17.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-15T20:11:35.000Z (about 7 years ago)
- Last Synced: 2025-03-10T19:42:18.409Z (7 months ago)
- Topics: canapi, rest, rust, stdweb, wasm, xhr
- Language: Rust
- Size: 1000 Bytes
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
}
```