njaremko / liveview-rust

PoC of LiveView in rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

liveview-rust

PoC of LiveView in rust - "Never write javascript again"

Version Documentation License

This was inspired by the Phoenix Live View project.

An example of how to use this library can be found here.

We follow a similar model, with the only difference being that we send the full html on each render and let the client calculate the diff, instead of sending only diffs to client and letting them apply the change.

What works?

  • Click, text input, and submit events are sent to server and the template is re-rendered and sent to client, then morphdom applies the change to the dom.
  • Built on Actix-Web at the moment, potentially working with Rocket at some point as well.

Whats left?

  • Testing framework
  • HTML diffs on server side (not nessesary for PoC)
  • Write some macros to make implementation nicer

About

PoC of LiveView in rust

License:MIT License


Languages

Language:Rust 57.2%Language:JavaScript 42.8%