Blazing fast reactive server-side rendering for Django, powered by Rust
Rust-powered template rendering and DOM diffing, 10-100x faster than pure Python
Phoenix LiveView-style reactivity with automatic DOM updates over WebSocket
Auto-rendering forms with Bootstrap, Tailwind, or plain HTML. Real-time validation built-in!
No JavaScript bundling required. Just 5KB of client-side code
class CounterView(LiveView):
template_string = """
<button @click="increment">Count: </button>
"""
def mount(self, request):
self.count = 0
def increment(self):
self.count += 1 # Auto-updates client!