modem
modem copied to clipboard
A friendly Lustre package to help you build a router, handle links, and manage URLs.
Modem swallow exceptions and doesn't show them in the console. Given this function with an assert that should fail: ```gleam pub fn init() -> #(Model, Effect(Msg)) { echo "in init"...
`` tags that are in lustre components aren't handled by modem and cause a full page reload by navigating to the link as a normal `` would . https://github.com/user-attachments/assets/e39a5c91-c0d6-4046-ba8d-366cd7f9add2 I...
In the quickstart ``` pub fn main() { lustre.application(init, update, view) } ``` should be ``` pub fn main() { let app = lustre.application(init, update, view) let assert Ok(_) =...