hotwired/turbo

The speed of a single-page web application without having to write any JavaScript

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 45 minutes ago
Added to GitGenius on September 8th, 2026
Created on December 7th, 2020
Open Issues & Pull Requests: 351 (+0)
GitHub issues: Enabled
Number of forks: 490
Total Stargazers: 7,388 (+0)
Total Subscribers: 85 (+0)

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 116
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 819 days
Stale 30+ days: 106
Stale 90+ days: 97

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 1

Top labels

  • scrolling (2)

Detailed Description

Turbo is a JavaScript framework that delivers single-page application performance without requiring developers to write custom JavaScript.

Turbo addresses the problem of building fast, responsive web applications while minimizing JavaScript complexity. It works by sending HTML over the wire and using complementary techniques to intercept and optimize common browser operations. Turbo Drive accelerates links and form submissions by replacing full page reloads with partial updates. Turbo Frames decompose pages into independent contexts that scope navigation and support lazy loading. Turbo Streams deliver page changes via WebSocket or form submission responses using HTML with CRUD-like actions. For native mobile applications, Turbo Native allows a web monolith to power both iOS and Android apps with seamless transitions between web and native sections.

Turbo suits teams building server-rendered applications who want to avoid the complexity of building a separate JavaScript-heavy frontend. It works well for projects where the server already generates HTML and where developers prefer to keep business logic on the backend. The framework is designed for situations where HTML-over-the-wire interactions suffice; when more sophisticated client-side behavior is needed, the documentation explicitly points to Stimulus as a complementary tool for adding targeted interactivity.

The project maintains active development with regular commits across its codebase. The repository includes comprehensive contribution guidelines and demonstrates ongoing refinement of its core techniques. Development activity shows consistent engagement with the framework's multiple subsystems, indicating sustained attention to both the Drive, Frames, and Streams components.