# Do we need Turbo Drive in 2025?

**URL:** https://discuss.hotwired.dev/t/do-we-need-turbo-drive-in-2025/6248
**Category:** General
**Created:** [March 3, 2025, 5:52pm UTC](https://discuss.hotwired.dev/t/do-we-need-turbo-drive-in-2025/6248 "2025-03-03T17:52:37Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![cerdiogenes](https://yyz1.discourse-cdn.com/flex027/user_avatar/discuss.hotwired.dev/cerdiogenes/32/324_2.png) [@cerdiogenes](https://discuss.hotwired.dev/u/cerdiogenes)
#### Post date: [March 3, 2025, 5:52pm UTC](https://discuss.hotwired.dev/t/do-we-need-turbo-drive-in-2025/6248/1 "2025-03-03T17:52:37Z")

</div>

Hey! I just read this article: [Do we need Turbo Drive in 2025? - Rob McCormick](https://robmc.dev/blog/do-we-need-turbo-drive/), and I think it brings up a good point.

I would love to hear from other developers who use Turbo Drive. Have you conducted similar experiments? How did they go? What challenges did you encounter?

For very simple applications, like the one in the article, it seems feasible to completely ignore Turbo Drive. However, it offers some valuable features that I believe are worthwhile, such as maintaining player state while navigating the website, among others. Since I don’t do much frontend work, I might be missing some aspects.

---

<div class="post-metadata">

### Author: ![walterdavis](https://yyz1.discourse-cdn.com/flex027/user_avatar/discuss.hotwired.dev/walterdavis/32/737_2.png) [@walterdavis](https://discuss.hotwired.dev/u/walterdavis)
#### Post date: [March 3, 2025, 6:23pm UTC](https://discuss.hotwired.dev/t/do-we-need-turbo-drive-in-2025/6248/2 "2025-03-03T18:23:40Z")

</div>

What do you think is different about 2025 that wasn’t true previously?

One of the things that TurboDrive does is pave the cowpaths for a site that isn’t really heavy into JS. It just applies some patterns (pre-fetching, head recycling, and JS form handling) that make everything faster than full page request/replace cycles.

If you are applying a few (or more) sprinkles of JS to your app, or are spending any amount of effort on actually using JS to make your app work at a basic level, then also having TurboDrive happening on those same routes might be duplicated effort, or might confuse you at some point.

Just my two pfennigs.

---

<div class="post-metadata">

### Author: ![defsdoor](https://yyz1.discourse-cdn.com/flex027/user_avatar/discuss.hotwired.dev/defsdoor/32/2135_2.png) [@defsdoor](https://discuss.hotwired.dev/u/defsdoor)
#### Post date: [March 10, 2025, 9:52am UTC](https://discuss.hotwired.dev/t/do-we-need-turbo-drive-in-2025/6248/3 "2025-03-10T09:52:35Z")

</div>

Testing against localhost is pretty pointless… you’d have to go very out of your way to make one thing visibly appear slower than another.

Isn’t it missing the point that the head recycling means the browser doesn’t even consider the assets required in the head, whereas a full page load has to do cache considerations as a minimum ?

---

<div class="post-metadata">

### Author: ![cerdiogenes](https://yyz1.discourse-cdn.com/flex027/user_avatar/discuss.hotwired.dev/cerdiogenes/32/324_2.png) [@cerdiogenes](https://discuss.hotwired.dev/u/cerdiogenes)
#### Post date: [March 19, 2025, 10:53pm UTC](https://discuss.hotwired.dev/t/do-we-need-turbo-drive-in-2025/6248/4 "2025-03-19T22:53:02Z")

</div>

> [@walterdavis](#):
>
> What do you think is different about 2025 that wasn’t true previously?

I don’t have any data or specific research, but you can consider that everything is getting faster: internet speed, servers, and client machines. Maybe this can make some of the optimizations irrelevant for most applications.

From the article, what I mostly agree with is that Turbo Drive does a lot of things that the browser already does, but I think that faster navigation isn’t the main point of using Turbo Drive right now; it’s a bonus.

> [@defsdoor](#):
>
> Testing against localhost is pretty pointless… you’d have to go very out of your way to make one thing visibly appear slower than another.

Good point, I didn’t realize he was using localhost, I just noticed the simplicity of the application.
