🚀 Django Rust Live

Blazing fast reactive server-side rendering for Django, powered by Rust

⚡ Lightning Fast

Rust-powered template rendering and DOM diffing, 10-100x faster than pure Python

🔄 Reactive

Phoenix LiveView-style reactivity with automatic DOM updates over WebSocket

📝 Django Forms

Auto-rendering forms with Bootstrap, Tailwind, or plain HTML. Real-time validation built-in!

📦 Zero Build Step

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!