12 releases
new 0.2.0-rc1 | Nov 4, 2024 |
---|---|
0.2.0-rc0 | Oct 22, 2024 |
0.2.0-gamma | Sep 30, 2024 |
0.2.0-beta4 | Aug 31, 2024 |
0.1.0 | Apr 27, 2024 |
#238 in HTTP server
4,121 downloads per month
Used in 6 crates
(via reactive_graph)
38KB
712 lines
Isomorphic web applications that run on the server to render HTML, then add interactivity in the client, need to accomplish two tasks:
- Send HTML from the server, so that the client can "hydrate" it in the browser by adding event listeners and setting up other interactivity.
- Send data that was loaded on the server to the client, so that the client "hydrates" with the same data with which the server rendered HTML.
This crate helps with the second part of this process. It provides a SharedContext
type
that allows you to store data on the server, and then extract the same data in the client.
lib.rs
:
Isomorphic web applications that run on the server to render HTML, then add interactivity in the client, need to accomplish two tasks:
- Send HTML from the server, so that the client can "hydrate" it in the browser by adding event listeners and setting up other interactivity.
- Send data that was loaded on the server to the client, so that the client "hydrates" with the same data with which the server rendered HTML.
This crate helps with the second part of this process. It provides a SharedContext
type
that allows you to store data on the server, and then extract the same data in the client.
Dependencies
~1–2MB
~40K SLoC