Turbolinks

Turbolinks makes navigating your web application faster (by turbolinks)

Turbolinks Alternatives

Similar projects and alternatives to Turbolinks

  1. vite

    901 Turbolinks VS vite

    Next generation frontend tooling. It's fast!

  2. Civic Auth

    Auth in Less Than 5 Minutes. Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today.

    Civic Auth logo
  3. htmx

    642 Turbolinks VS htmx

    </> htmx - high power tools for HTML

  4. Ruby on Rails

    Ruby on Rails

  5. Alpine.js

    A rugged, minimal framework for composing JavaScript behavior in your markup.

  6. rubygems

    Library packaging and distribution for Ruby.

  7. Mosh

    Mobile Shell

  8. turbo

    155 Turbolinks VS turbo

    The speed of a single-page web application without having to write any JavaScript (by hotwired)

  9. InfluxDB

    InfluxDB high-performance time series database. Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.

    InfluxDB logo
  10. date-fns

    126 Turbolinks VS date-fns

    ⏳ Modern JavaScript date utility library ⌛️

  11. Stimulus

    115 Turbolinks VS Stimulus

    A modest JavaScript framework for the HTML you already have

  12. Webpacker

    Use Webpack to manage app-like JavaScript modules in Rails

  13. turbo-rails

    Use Turbo in your Ruby on Rails app

  14. rack-mini-profiler

    Profiler for your development and production Ruby rack apps.

  15. jbuilder

    Jbuilder: generate JSON objects with a Builder-style DSL

  16. turbo-ios

    iOS framework for making Turbo native apps

  17. rails-i18n

    Repository for collecting Locale data for Ruby on Rails I18n as well as other interesting, Rails related I18n stuff

  18. InstantClick

    5 Turbolinks VS InstantClick

    InstantClick makes following links in your website instant.

  19. lighthouse

    170 Turbolinks VS lighthouse

    Automated auditing, performance metrics, and best practices for the web.

  20. Kaminari

    ⚡ A Scope & Engine based, clean, powerful, customizable and sophisticated paginator for Ruby webapps

  21. Spring

    8 Turbolinks VS Spring

    Rails application preloader (by rails)

  22. Slideout

    0 Turbolinks VS Slideout

    A touch slideout navigation menu for your mobile web apps. (by Mango)

  23. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better Turbolinks alternative or higher similarity.

Turbolinks discussion

Log in or Post with

Turbolinks reviews and mentions

Posts with mentions or reviews of Turbolinks. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-06-02.
  • Hotwire: HTML Over The Wire
    5 projects | news.ycombinator.com | 2 Jun 2024
    First off, name calling.

    Second, I actually thought the same as you but digging into the history I don't see any records of a public release of Hotwire until December of 2020, and HTMX was public in May of that year.

    I'm pretty sure what I was thinking of was actually Turbolinks:

    https://github.com/turbolinks/turbolinks

  • What is the best way to add dynamic workflow in django template ?
    1 project | /r/djangolearning | 2 Apr 2023
    You can find out more about Turbolinks on the GitHub repository (https://github.com/turbolinks/turbolinks). The repo is now archived, because it’s was integrated in a framework called Turbo, but the functionality is the same.
  • how would i create a progress bar in rails front-end using jquery and bootstrap with ajax calls to another rails server, which returns progress statistics in api.
    1 project | /r/rubyonrails | 9 Nov 2022
    I know it’s been replaced by Turbo but you can copy Turbolink’s progress bar: https://github.com/turbolinks/turbolinks/blob/master/src/progress_bar.ts. It uses an animation that “trickles” based on response time.
  • A Comprehensive Guide to Rails Internationalization
    4 projects | dev.to | 21 Oct 2022
    // app/javascript/src/helpers/price.js // Turbolinks are enabled by default in Rails, // we need to process our script on every page load // https://github.com/turbolinks/turbolinks#full-list-of-events document.addEventListener("turbolinks:ready", () => { // Get language from html tag const lang = document.documentElement.lang; // Find all span tags with data-localize="price" const pricesOnPage = document.querySelectorAll("[data-localize=\"price\"]"); if (pricesOnPage.length > 0) { // Iterate all price span tags [...pricesOnPage].forEach(priceOnPage => { // Modify text in span tag according to current language priceOnPage.textContent = priceOnPage.textContent.toLocaleString( lang, { style: "currency", currency: "USD" } ); }) } });
  • How is this website so fast?
    4 projects | /r/webdev | 16 Aug 2022
    Because it feels fast, it actually is not. It is using Turbolinks. https://github.com/turbolinks/turbolinks And Laravel Wrapper for Turbolinks: https://github.com/frenzyapp/turbolinks
  • An SPA Alternative
    4 projects | news.ycombinator.com | 19 Jul 2022
    https://github.com/turbolinks/turbolinks

    It provides a smooth UX by fetching next page's HTML in background, then replace the DOM by compareing the diff in HTML. So you won't see a blank page while navigating between pages.

  • Get Started with Hotwire in Your Ruby on Rails App
    4 projects | dev.to | 13 Jul 2022
    If you have used Turbolinks in the past, you will feel right at home with Turbo Drive. At its core, some JS code intercepts JavaScript events on your application, loads HTML asynchronously, and replaces parts of your HTML markup.
  • A Look at Rails Hotwire: Turbo Drive
    4 projects | dev.to | 18 Apr 2022
    When the Turbolinks technology first came out in Rails 4, some people did not understand what it was really about. I happened to get it right away only because I personally implemented my own version of Turbo Drive for one of my client projects before Turbolinks was released (around 2012), so I really appreciated Turbolinks when it was released. With the latest updates in Rails 7, the Turbolinks technology has been renamed to Turbo Drive (now part of Hotwire) since it not only accelerates hyperlinks anymore, but also form submissions too.
  • Migrating From Turbolinks To Turbo
    4 projects | dev.to | 1 Feb 2022
    Turbolinks, a great tool to make navigating your web application faster, is no longer under active development. It has been superseded by a new framework called Turbo, which is part of the Hotwire umbrella.
  • Unable to build and deploy Rails 6.0.4.1 app on heroku - Throws gyp verb cli error
    7 projects | /r/Heroku | 17 Dec 2021
  • A note from our sponsor - CodeRabbit
    coderabbit.ai | 26 Apr 2025
    Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR. Learn more →

Stats

Basic Turbolinks repo stats
28
12,722
0.9
over 3 years ago

Sponsored
Auth in Less Than 5 Minutes
Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today.
www.civic.com

Did you know that TypeScript is
the 1st most popular programming language
based on number of references?