Local LiveView demos
These apps are built with Local LiveView — Phoenix LiveView running entirely in your browser thanks to Popcorn. The source code is available on GitHub.
-
Kanban boards
Create, browse and edit kanban-style boards. The most interesting part is the board view: it's 100% Elixir, supports drag & drop, optimistic updates, and all the modals/forms are handled locally. Open the app, create a board, then disconnect from the network and see how it behaves. It also demonstrates server synchronization via LLV's push_server_event mechanism - reconnect and open two windows side-by-side to see it in action.
-
Pong game
The classic game, 100% local, 100% Elixir. You play against the bot.
-
Burrito ordering app
Compose your order and put it in the cart. Showcases how Local LiveView handes forms, comparing regular LiveView and Local LiveView side-by-side. It also demonstrates synchronizing state via LLV's mirror sync mechanism.