hotwire-patterns
Installation
SKILL.md
Hotwire Patterns for Rails 8
Overview
Hotwire = HTML Over The Wire - Build modern web apps without writing much JavaScript.
| Component | Purpose | Use Case |
|---|---|---|
| Turbo Drive | SPA-like navigation | Automatic, no code needed |
| Turbo Frames | Partial page updates | Inline editing, tabbed content |
| Turbo Streams | Real-time DOM updates | Live updates, flash messages |
| Stimulus | JavaScript sprinkles | Toggles, forms, interactions |
Quick Start
Turbo Frames (Scoped Navigation)
<%# app/views/posts/index.html.erb %>
Related skills