Evan Almloff
Evan Almloff
## Specific Demand It is very common for people to try to use Tokio in Dioxus (or wasm more generally). If you try to compile the project after adding tokio,...
## Specific Demand Internally we use [globals, manual events and generations](https://github.com/DioxusLabs/dioxus/blob/9ae3d14e676c90c73a99f5cfb41ff85c7cbf4bc2/packages/core/tests/lifecycle.rs#L44-L78) to test dioxus components. There should be a library that handles some of that setup for you and has...
## Specific Demand If `Signal::global` is used in const global instead of a static global, multiple states will be created. Consts effectively copy the const value into every place where...
This PR changes the placeholder and empty nodes in core to reuse the same `Rc` for every instance per thread. NodeInner is completely immutable, so using the same instance for...
This PR fixes rendering aborted nodes in the SSR renderer by first converting nodes to VNodes and then rendering the VNode. It also cleans up a few unused items in...
This PR fixes spawn forever by spawning the future in the root scope. This may result in unexpected behavior with global APIs which are now documented. It also adds a...
Firefox will trigger the websocket onclose event when reloading the page. We rely on the onclose event to detect when the server rebuild has restarted or the server was unexpectedly...
The signals crate exports the Readable and Writable traits which use the generational-box error types, but it doesn't export those types. This PR changes the signal crate to export those...
This PR introduces a new `dioxus-static-site-generation` crate that handles the setup for statically generated and hydrated sites like the docsite. ## Why is this a separate crate? This is a...
This PR fixes hydration for non-bubbling events like the onmouseenter event in the hackernews guide. We were not correctly trimming the `on` prefix from events before checking if the event...