seed
seed copied to clipboard
A Rust framework for creating web apps
- There were some experiments with React hooks and I think we should implement something similar in Seed. - The idea is: 1. Use The Elm architecture (TEA) for your...
Until recently, using `web_sys`'s fetch functionality's been the only practical way to perform HTTP requests. Recently, two new options became available: [Surf](https://github.com/rustasync/surf) is a just-release async HTTP crate with WASM...
**Update**: I'll hopefully add a full example soon :) *Original question:* Are there examples how to use `seed::fetch::Request`s with cookies? On load I'd like to know if the user is...
I'm having trouble groking how to get data out of the fetch::Request::fetch() method. Sorry this is more of a support request than an issue.
I've just updated my app from Seed 0.4.1 to 0.5.1, and it could have gone more smoothly. When I do breaking change releases of Criterion.rs I try to write a...
Hi! We want to make Seed's documentation as good as possible. Could you help us to make `Readme.md` better? - Do you think that something is missing? - Are code...
Hey guys, I'm thinking about implementing first-class support for not-only-Rust [Web Components](https://developer.mozilla.org/en-US/docs/Web/Web_Components). Before I write some reasoning about it I would like to know your opinions and experience. So.. what...
What do you think about uniting `Model`, `Msg`, `update` and `view`? `Model` is represented by `Self` in this approach. ```rust /// Page is a trait representing one page of the...
> Updated proposal: > > ```rust > div![ > A.class("foo"), > A.disabled(disabled), > A.autocomplete().on(), > A.autofocus(true), > A.custom("data-columns", "3"), > A.custom("custom-boolean", None), > ] > // or with wrapper >...
## Motivation Flashing page elements on wasm file load on prerendered pages. ## How to reproduce Try to open [kavik.cz/about/](https://kavik.cz/about/) on a mobile or in a desktop browser with enabled...