Rolldown is here, can it save Vite?

  Рет қаралды 48,810

Theo - t3․gg

Theo - t3․gg

Күн бұрын

Пікірлер
@JoaoVitor-fy4jq
@JoaoVitor-fy4jq 3 күн бұрын
Save Vite from what? Vite is perfect
@vanness1868
@vanness1868 3 күн бұрын
that means you never use vite in a huge project
@austincodes
@austincodes 3 күн бұрын
From Rollup
@yojou3695
@yojou3695 3 күн бұрын
​@@vanness1868 nope, no problems here, better than anything else out there by far
@mattmmilli8287
@mattmmilli8287 3 күн бұрын
It’s good for like a single goal. Try to have web component and WASM libraries in there and other things and the caching becomes hell on earth and css bundling sucks
@xijnin
@xijnin 3 күн бұрын
From ecmascript
@TheAlexLichter
@TheAlexLichter 2 күн бұрын
Sadly a lot of things aren’t correct in the benchmark (no native vite plugins enabled, vite plugin react isn’t necessary etc etc) :/ Could’ve been easily prevented by reaching out to the rolldown team or Evan directly. I see parallels to the SSR benchmark a few months ago here where the same issues happened - and you’ve also discussed these on the channel here.
@mateusavilaisidoro8305
@mateusavilaisidoro8305 Күн бұрын
please create a video with this content
@卛
@卛 3 күн бұрын
wait, vite needed saving?
@austincodes
@austincodes 3 күн бұрын
From Rollup
@alexbennett5647
@alexbennett5647 3 күн бұрын
Yeah, Vite technically uses two different bundling process for dev and prod.
@rohithkumarbandari
@rohithkumarbandari 3 күн бұрын
I had the same reaction 😂
@ryanmartin90
@ryanmartin90 2 күн бұрын
Vite is a toy, most of the time to us
@lessko9
@lessko9 2 күн бұрын
​@@ryanmartin90webpack is a meme and so is turbopack
@JohnDoe4321
@JohnDoe4321 3 күн бұрын
As an old C++ developer, I'm amazed at build times for JS tools. When I was your age, I worked on projects that took HOURS to build. 👴 The kids these days complain about builds taking 30 seconds! P.S. Get off my lawn! 😁
@nitsanbh
@nitsanbh 3 күн бұрын
Also we complain when our internet is slower than 100mbps
@gearboxworks
@gearboxworks 3 күн бұрын
Did you also walk 10 miles to school in the snow, uphill, both ways? 😜
@tonyb3123
@tonyb3123 3 күн бұрын
To be fair, a C++ build is turning code into an extremely efficient binary. A JavaScript build turns JavaScript into more JavaScript
@girishjain5288
@girishjain5288 3 күн бұрын
​@@tonyb3123yeah compiling to binary is wayyy harder than transpiling to js
@nitsanbh
@nitsanbh 3 күн бұрын
@ I hate when people say “compile ts to js” Dude it’s literally find and replace. Calling that “compiling” when gcc and optimizations exist is really…
@DavidAlsh
@DavidAlsh 2 күн бұрын
Working at Atlassian as a bundler engineer. We are currently rewriting Parcel in Rust under the creatively named Atlaspack bundler. In our experimental pre-pre-releases we've seen build times go from 1 hour to 45 seconds 🔥 Super fun project to work on. Very cool the approach Rolldown is taking on their Nodejs worker model!
@Syntarex
@Syntarex 2 күн бұрын
I love that you call it „experimental pre-pre-release“. 🤣
@pawelblaszczyk__
@pawelblaszczyk__ 2 күн бұрын
Doesn’t the Parcel already includes a lot of Rust in performance sensitive pieces?
@DavidAlsh
@DavidAlsh 2 күн бұрын
@@pawelblaszczyk__ mostly just the expensive plugins like import resolution and typescript type stripping. Our work is to replace the core with an API compatible Rust based core. Many of the plugins can remain in JavaScript. The core is where the sausage is made. It manages a worker pool, handles scheduling calling out to plugins, and builds the data structures that eventually end up the bundles spit out on the other side. The Nodejs core uses Nodejs Worker threads and shared array buffers. It's actually really fast and a good case study for how far you can actually push node - but no match for Rust's multi threading model
@pawelblaszczyk__
@pawelblaszczyk__ 2 күн бұрын
@@DavidAlsh cool to know, thanks a lot!
@joelv4495
@joelv4495 3 күн бұрын
Also in the Gen 0 category: Grunt and Gulp.
@miran248
@miran248 3 күн бұрын
Gulp was actually nice.
@SERWERWARMINEPL
@SERWERWARMINEPL 3 күн бұрын
@@miran248 and grunt was horrible
@Novascrub
@Novascrub 3 күн бұрын
Its a task runner!
@lutfiikbalmajid
@lutfiikbalmajid 3 күн бұрын
phew i skip that era. i am still use PHP at that time haha
@danielvaughn4551
@danielvaughn4551 3 күн бұрын
@@lutfiikbalmajid lucky you. the configuration was quite often a nightmare
3 күн бұрын
Esbuild is actually way more powerful than people relise. That is my only “bundler” for years now. It handles bundling into single js file with “-bundle” and it has a dev server. Plugin api is quite good. It even handles new css nesting syntax and can downscale it. It works with css modules out of the box.
@MrAzulay
@MrAzulay 3 күн бұрын
This! I guess esbuild limitations then are more it's lack of more advanced code splitting? Wonder why it's not good enough for vite
@C4CH3S
@C4CH3S 3 күн бұрын
@@MrAzulay maybe TS people just don't like go as much, or the esbuild people are not that open to implementing these things. if the reason is legit just "because of go" then that's really disappointing, wasting so much time rewriting something instead of just retooling what was already good enough. I do get it a bit though, for the purposes of writing a bundler, rust has better language tools than go.
2 күн бұрын
@@MrAzulay vite actually needs advanced plugin system, that esbuild does not provide. Vite relies on rollup plugins. Most of them are not compatible with esbuild.
@lessko9
@lessko9 2 күн бұрын
Go sucks for WASM
@EvanYou
@EvanYou 2 күн бұрын
@@MrAzulay In production you **need** to be able to more precisely control the chunks. esbuild has a very strict chunking default and no configurability, so it's not uncommon for a real app to end up with dozens or even hundreds of small chunks that the devs have no way to optimize for.
@bholmesdev
@bholmesdev 2 күн бұрын
My theory on the slower build time is the memory ceiling. This is *the* wall Astro runs into building MDX at scale today. Once you cross a threshold by even a few files, a 10 second build could easily become 30 seconds+. Fingers crossed the memory ceiling is harder to hit in rolldown! But building a React file that big... yeah, not surprised 😅
@systematicpsychologic7321
@systematicpsychologic7321 3 күн бұрын
Informative, but there was no 'peace nerds' and thus I am doomed to war. :(
@11WicToR11
@11WicToR11 3 күн бұрын
how the f can you use [insert random js framework] instead of nextjs? **signals army to march**
@LutherDePapier
@LutherDePapier 2 күн бұрын
Agreed, I didn't notice that the video ended.
@paoloricciuti
@paoloricciuti 3 күн бұрын
The one thing I fear about rolldown is that rollup got reeeeeally good at tree shaking...a rewrite could have subtle differences that include much more of the code in the bundle which is a shame
@CanRau
@CanRau 3 күн бұрын
Sadly this is actually a valid concern 😢
@spicynoodle7419
@spicynoodle7419 3 күн бұрын
Who cares, it's only 7kb gzipped /s
@CanRau
@CanRau 3 күн бұрын
@@paoloricciuti my concern was more on tree shaking server side code in the client bundle, and OPs is possibly talking about the same or the whole code base. Not sure what 7kb you're referring to?
@CanRau
@CanRau 3 күн бұрын
@ sounds promising and fantastic definitely looking forward to it 🥰
@nextentrepreneur9288
@nextentrepreneur9288 3 күн бұрын
They'll eventually get to rollup's level using all their tests and get more of them to pass over time.
@ErikBongers
@ErikBongers 2 күн бұрын
Based on this video I just replaced rollup with rolldown on a project and indeed, don't need a typescript plugin anymore. Transition was graceful. Rolldown also pointed out that I had forgotten to put type="module" in my package.json, which rollup hadn't informed me about.
@byGDur
@byGDur 3 күн бұрын
These compiler and bundler devs are crazy impressive to me
@TimLouw
@TimLouw 2 күн бұрын
I've built my own bespoke framework with ESBuild as the bundler and it outputs either to one big file or splits out files when dynamically imported or set as entry points. It has minification, tree-shaking as well as splitting all as configuration options so the comment by Theo about it outputting too many files is nonsense or at the very least extremely outdated information. ESBuild might have some gaps but not what was mentioned in the video.
@stokbrood
@stokbrood 2 күн бұрын
5:03, ESBuild is actually pretty nice for packages which do not need to put everything in a single file
@stokbrood
@stokbrood 2 күн бұрын
Also good to mention in the gen2 list is: Rspack, basically a webpack rewrite to Rust. However they did not rework the API to be more user friendly, like what Parcel did
@Atmos41
@Atmos41 3 күн бұрын
Not mentioning rspack/rsbuild is CRAZY btw. Easily the smoothest migration from Webpack, and it is production-ready now. Also migrating from Webpack to Vite isn't really possible once your codebase is large enough, due to unbundled development making things very tricky.
@philheathslegalteam
@philheathslegalteam 3 күн бұрын
Agreed. RSPack completely beat Vercel to market.
@alexbennett5647
@alexbennett5647 3 күн бұрын
RsPack is the GOAT. Theo knows about RsPack and will probably release some vids soon Im hoping
@bboyakers
@bboyakers 7 сағат бұрын
Respectfully, ESBuild is phenomenal. I formerly worked at Microsoft and the entire Microsoft Learn/Docs monorepo uses ESBuild. I'd have to have one of the eng managers/principal engs fact check me but it was a monorepo of 6+ applications. Docs alone serves millions of pages of content. It scales very well and is 🔥. Almost positive ESBuild was also used for the production build as well!
@vipzip8863
@vipzip8863 3 күн бұрын
0:00 Introduction to Roll Down and Bundler Evolution 1:25 Single Store Database Performance 1:50 Generational Overview of JavaScript Bundlers 3:15 ES Build and Turbo Pack: New Approaches to Bundling 4:57 Roll Down Performance Comparison and Benefits 9:20 Real-World Performance Testing with Roll Down 11:00 Roll Down's Impact on Dev and Production Builds 16:00 Why Bundlers are Still Necessary 18:00 Future of Bundlers and Web Development Generated by Snorvia AI chapter generator
@Kiyuja
@Kiyuja 3 күн бұрын
that hot reloading reminded me of the first time I was doing HTML + CSS in Atom and found a HTML Preview extension. Seeing your changes in real time made it so much more comfortable while also improving my productivity because I immediately saw errors and could correct them
@BenjaminSolum
@BenjaminSolum 3 күн бұрын
Is Turbopack expected to be an API-compatible Webpack? I thought that was why Rspack is a thing? I've had the impression that Turbopack was a re-imagining of Webpack but perhaps my perception is off?
@twitchizle
@twitchizle 3 күн бұрын
Turbopack is a balloon
@javierflores09
@javierflores09 2 күн бұрын
It isn't going to be API-compatible, no. Supposedly, they redesigned it in order to make configuration simpler though I have yet to try their API, bundler output should be an exact match to webpack though considering the amount of tests they got going for that; unsure if rspack tries to keep the same consistency level as turbopack on that end
@bloodline39
@bloodline39 3 күн бұрын
After doin a lot of projects in Next JS, i just did a test with Vite + Express, made a full fledged e commerce application, idk what's wrong woth vite, it is just perfect to me
@OffroadTreks
@OffroadTreks 3 күн бұрын
I've had to refactor a number of clients out of the delusion of "no build" guys, and no build almost never scales. And it's almost vanilla JS guys and it's like... just becuase you CAN doesn't mean you SHOULD. Talking messy code bases where no one can find their way around it becuase someone was too opinionated and not flexible enough to just ask, whats the best tool for the job and scope.
@TheSlyProfessor
@TheSlyProfessor 3 күн бұрын
I love all your videos, but these excalidraw breakdown videos are next level awesome in their educational breakdown of things. I want a playlist of these types of videos. I watch all your videos but I want to revisit specific ones like this but since you release so many videos (thank you), it’s hard to know which videos are like this
@t3dotgg
@t3dotgg 2 күн бұрын
Yeah I need to make a playlist of these for sure
@StephanHoyer
@StephanHoyer 3 күн бұрын
I use esbuild also for mengling and minifying. Works great. What do I miss here?
@azizsafudin
@azizsafudin 2 күн бұрын
It’s missing configurable code splitting
@StephanHoyer
@StephanHoyer 2 күн бұрын
@@azizsafudin good point. But wouldn't it be easier to add this to esbuild than to create yet another bundler.
@eldarshamukhamedov4521
@eldarshamukhamedov4521 2 күн бұрын
@@StephanHoyer I believe the point of rewriting Rollup was to maintain backwards compat with the Rollup ecosystem. ESBuild is great, but I don't think you could reasonably call it "highly customizable". If you tried to make it as flexible as Rollup, you'd just end up with ESBuild turning into Rollup, but with a smaller ecosystem.
@StephanHoyer
@StephanHoyer 2 күн бұрын
@@eldarshamukhamedov4521 sounds reasonable. Thanks for the explanation
@dinoDonga
@dinoDonga 3 күн бұрын
i felt the "i learned a lot"
@JLarky
@JLarky 2 күн бұрын
Theo: eabuild is good for dev but not recommended for production Every Remix dev who is not using Remix Vite yet: what do you mean?
@miran248
@miran248 3 күн бұрын
Now imagine, if in addition to bundling, we could actually compile the code to some intermediary output, such as wasm and then load that in the browser w/o js - that would be huge! Endgame even.
@roberthernandez5802
@roberthernandez5802 3 күн бұрын
Endgame in what way? Are you being dramatic?
@miran248
@miran248 3 күн бұрын
@@roberthernandez5802 Haha, a little bit. Just thinking quietly on what could be the next big thing, once the dust (around bundlers) settles. Hoping to see more on the compilers front (code analysis, optimizations, ..), even if it compiles back to js (and not wasm). Some people are already working on ts + llvm.
@TheMeticulousMoo
@TheMeticulousMoo 3 күн бұрын
I'm curious, why would you ever want to compile js to wasm??
@philheathslegalteam
@philheathslegalteam 3 күн бұрын
@@roberthernandez5802he is talking about ready parsed ASTs. There is a current TC39 proposal for this to be implemented in JS. Browsers spend an ungodly amount of time simply parsing your JS and turning it into AST for the engines to run. Sometimes several seconds. If we could take for example, the entire implementation of React + React-DOM and ship it as pure AST, 100ms - 2seconds (depending on device) will be shaved off TTI score. Even more powerful for evil frameworks like next that use JS injection of several kilobytes of JSON data for hydration. This completely KILLS performance.
@Sxxov
@Sxxov 3 күн бұрын
this is an explored concept. however, due to how good javascript engines are nowadays at running javascript, you’d actually lose in both performance & file size. the dynamic nature of js means you’ll need to reimplement a mini js runtime (that’s probably a scrappier version of whatever js engine on the browser), be unable to support many of js’s features, lose any resemblance of interop with idiomatic js code, or any combination of the above. you can see prior work in assemblyscript (js to wasm), closure compiler (js to compiled js), v8 snapshots (js to v8 ir, commonly used for electron/node/react native)
@svecs132
@svecs132 2 күн бұрын
3:40 Gentoo mentioned!!!!1!!1!
@mr_kovalyov
@mr_kovalyov Күн бұрын
Gentoo, by the way 😂
@Danielo515
@Danielo515 2 күн бұрын
10k files compiled in 10 seconds sounds great to me
@tedchirvasiu
@tedchirvasiu 2 күн бұрын
2:25 - Devin already taking our jobs
@TanjilBhuiyan
@TanjilBhuiyan 2 күн бұрын
whats your thought on rspack?
@ReedoTV
@ReedoTV 3 күн бұрын
Browserify got written out of history
@joshix833
@joshix833 Күн бұрын
You can use Esbuild to combine multiple files into one. You just have to tell it to
@AndriiC-x4h
@AndriiC-x4h 3 күн бұрын
What specs of your laptop? Thank you.
@HexiumDev
@HexiumDev 3 күн бұрын
Can't wait for rust bundlers to be prod ready
@IStMl
@IStMl 2 күн бұрын
by then we will have Assembly bundlers
@MePeterNicholls
@MePeterNicholls 3 күн бұрын
If I’m Starting NOW, which is the best to get set up with
@keent
@keent 3 күн бұрын
ofc vite
@MePeterNicholls
@MePeterNicholls 2 күн бұрын
@ cheers. I’ve been so ad hoc in the past. But I need to get a good environment set up for this years projects.
@rozacp
@rozacp 3 күн бұрын
No mention of Gulp or Grunt?
@Jonjolt
@Jonjolt 2 күн бұрын
I don't think Theo's old enough...
@zwanz0r
@zwanz0r 2 күн бұрын
I'm wondering if a 'non-bundling but still use a minifier' would work
@Skizo336
@Skizo336 3 күн бұрын
How can I try rolldown with vite myself?
@IStMl
@IStMl 2 күн бұрын
What about OXC?
@pollathajeeva23
@pollathajeeva23 3 күн бұрын
I'm still facing an issue with the React env variable while deploying in Kubernetes.
@AidaJtm
@AidaJtm 3 күн бұрын
Thanks for trying this out!
@NicolasEmbleton
@NicolasEmbleton Күн бұрын
You forgot Gulp which was all the rage at some point, before Webpack.
@AQUTENOLEJ
@AQUTENOLEJ 2 күн бұрын
If it’s just roll down all the way down (excuse the pun), then why even ship it under Vite at all? Just ship the product as rolldown. I’m so confused 😅 what even is Vite now? Is it just a wrapper over rolldown?
@zebraforceone
@zebraforceone 2 күн бұрын
Vite is superb though. It's worlds better than all the other bundlers that have come before it.
@henriquematias1986
@henriquematias1986 2 күн бұрын
SingleStore at $0.9/hour seems a bit spicy. That’s $600+ per month
@MadsterV
@MadsterV 2 күн бұрын
people remembering what running native code feels like!
@A453
@A453 3 күн бұрын
Esbuild is still going to be the only bundler I need. It does everything I need. I don't understand why you think it has some limitations. It is production ready.
@dasten123
@dasten123 3 күн бұрын
Rolldown is gonna be HUGE I can't wait for the Vite update :D
@LockeAG4
@LockeAG4 2 күн бұрын
You forgot about Grunt and Gulp
@Mempler
@Mempler 3 күн бұрын
You could say, vite is an "development environment".
@Jonjolt
@Jonjolt 3 күн бұрын
Problem is, Webpack is still the best for non-SPA's because of its configurability, I was able to shoehorn Vite but it still isn't 100% as good as Webpack, I had to make some plugins to get it to work.
@Sxxov
@Sxxov 3 күн бұрын
that’s kind of the magic of vite though. need more functionality? just roll your own!
@eldarshamukhamedov4521
@eldarshamukhamedov4521 2 күн бұрын
Welcome to software. Everything is a trade-off.
@martoxdlol
@martoxdlol 3 күн бұрын
And Turbopack still doesn't work for prod builds ...
@icodefor
@icodefor 3 күн бұрын
Forgot Grunt
@sryx
@sryx 3 күн бұрын
You all acting like we weren't building web apps using Ant back in the day :)
@QueeeeenZ
@QueeeeenZ 3 күн бұрын
Next.js is getting left behind, it seriously needs to adopt Vite
@DerLuukee
@DerLuukee 3 күн бұрын
Try vue or even nuxt, it's great
@rampwuff
@rampwuff 3 күн бұрын
Either that or they need to ditch Turbopack and change to Rspack/Rsbuild. It’s out there, it’s stable, it works and they can contribute to that codebase instead. Turbopack lost, Vercel, it’s time to move on.
@javierflores09
@javierflores09 2 күн бұрын
@@rampwuff I mean, even if rspack works, turbopack is meant to do a Parcel and reimagine some parts of the webpack API to be more pain-free, while maintaining a consistent bundler output with webpack so in the long run, turbopack would ultimately be the better option for something like next though I doubt it'll catch on for anything else
@isaac10231
@isaac10231 3 күн бұрын
Save vite????? Clickbait used to be at least a LITTLE BIT believable.
@zicada7661
@zicada7661 3 күн бұрын
Is there a Patreon number where you would feel you didn't have to bother your viewers with the sponsor ads ? Or don't you see it as bothering your viewers ?
@zBrain0
@zBrain0 3 күн бұрын
Maybe make svelte build faster? Can't complain about that.
@Zedoy
@Zedoy 3 күн бұрын
< 10 likes? let me fix that
@rationalityfirst
@rationalityfirst 2 күн бұрын
JS dev is perpetual pain.
@siya.abc123
@siya.abc123 3 күн бұрын
We don't need more than Esbuild
@mattmmilli8287
@mattmmilli8287 3 күн бұрын
Vite should use it fully
@Ratipat332
@Ratipat332 2 күн бұрын
Man Frontend is so wild..
@ralify
@ralify 3 күн бұрын
webpack is suuuuuuuuper slow on big projects, would never use it again in my life
@pikavecordis5056
@pikavecordis5056 2 күн бұрын
Can Rolldown save Vite? Hi, I am a developer who has been using stock terminal. Here are my thoughts.
@dmitriyzakharov3696
@dmitriyzakharov3696 2 күн бұрын
Theo affiliates with nextjs, and that tool using swc. Rolldown use oxc which is 3x faster than swc. That main reason why he looking for problems as jealous hater) because soon all world will use rolldown with vite while their swc / nextjs / turbopack stack will be alone)
@elmiguel1969
@elmiguel1969 3 күн бұрын
There are too many flippin' tools out there.
@WillDelish
@WillDelish 3 күн бұрын
Rolldown for crabs 🦀
@RustIsWinning
@RustIsWinning 2 күн бұрын
Winning !! 🦀🦀🦀
@christianmartinez2179
@christianmartinez2179 2 күн бұрын
Fix? Save? those are words you use for a dying/struggling technology not for an improvement...
@TheHermitHacker
@TheHermitHacker 3 күн бұрын
If Rich Harris is behind Rollup, you just KNOW it's going to be fantastic.
@TheHermitHacker
@TheHermitHacker 3 күн бұрын
Roll down i mean
@ralify
@ralify 3 күн бұрын
you forgot to mention why Evan was doing it I think, but I didn't watch all the video, he said on the last conference is he needs rolldown to eliminate differences between production builds and dev builds
@NimbleTron
@NimbleTron 3 күн бұрын
Good
@이원희-p5u
@이원희-p5u 3 күн бұрын
good point though he mentioned it in the video
@casraf
@casraf 2 күн бұрын
Rust isn't the catch-all solution to everything This is a dumb trend The contributions will decline because it's such a high barrier of entry, and it saves what? .5s for a regular build?
@RustIsWinning
@RustIsWinning 2 күн бұрын
Didnt even look at the benchmarks lmao. Cry more pls 😂
@Harkunwar
@Harkunwar 2 күн бұрын
Switched from webpack to esbuild in our production code, build time went down from 2 minutes to 4 seconds.
@lovebes
@lovebes 2 күн бұрын
why does vite already need saving lol
@GamBar64
@GamBar64 2 күн бұрын
Benchmarks are false, roll down is in beta, just take down the video
@sedalski
@sedalski 3 күн бұрын
I'd love to go through this video but, oh, that vocal fry... Theo, please! 🙏🏻
@tino3420
@tino3420 Күн бұрын
this is so cool
@bubkabu
@bubkabu 2 күн бұрын
save from what? the clickbait and drama every. single. video. ffs. so obnoxious. it’s a shame because i got a lot of valuable info from you, but it’s not worth it
@bloqueamm
@bloqueamm 2 күн бұрын
Click baiting 😂😢 vite doesn't need to be saved😅
@wolfphantom
@wolfphantom 2 күн бұрын
clickbait title
@razdingz
@razdingz 3 күн бұрын
you must good useful sponsored things
@MenkoDany
@MenkoDany 2 күн бұрын
Boopgloop is here, can it save Shloopwoop? Web devs are a disgrace
@ScottMaday
@ScottMaday 3 күн бұрын
Theo releasing videos hyping another dead-on-arrival javascript tool will never not be funny
@t3dotgg
@t3dotgg 3 күн бұрын
Of the "new JS tools" I've covered recently, Rolldown objectively has the highest chance of success simply by being tied to Vite
@dasten123
@dasten123 3 күн бұрын
Dude this is pretty much the worst thing for making that comment. Rolldown will be a total game changer
@DerLuukee
@DerLuukee 3 күн бұрын
Vue/vite/rolldown will be the next big thing imo, it already is amazing
@drewhjava
@drewhjava 3 күн бұрын
@@DerLuukee It already is. Next is the only thing that's going in the opposite direction. Everyone else is behind Vite.
@alexbennett5647
@alexbennett5647 3 күн бұрын
I'm not even on the Vite train, and I know, this is long anticipated with a proper business backing. Many people left their jobs to work on this full time. Its not going anywhere
How Honey Got Away With It
25:40
Theo Rants
Рет қаралды 98 М.
The Secret Language Scaling WhatsApp and Discord
28:32
Theo - t3․gg
Рет қаралды 182 М.
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 20 МЛН
How Strong Is Tape?
00:24
Stokes Twins
Рет қаралды 96 МЛН
With Phone Earn Money online in 2025
8:27
Ovampa
Рет қаралды 478
Why Your Backend Shouldn't Serve Files
19:40
Boot dev
Рет қаралды 52 М.
React 19 is finally out!
28:01
Theo - t3․gg
Рет қаралды 72 М.
Next.js vs. Vite - Worth migrating to Vite?
9:17
snackableCTO
Рет қаралды 6 М.
"For $35,000 I'd Expect it to be Perfect"
42:13
Blacktail Studio
Рет қаралды 4,9 МЛН
I Can’t Stop you from Buying Amazon’s New TV… but I’ll Try Anyway
23:50
Web Developers Are Disconnected
21:36
ThePrimeTime
Рет қаралды 221 М.
My Home Server is REALLY Stupid and I Need to Fix It
23:17
Linus Tech Tips
Рет қаралды 1,4 МЛН
Why Don’t Railroads Need Expansion Joints?
27:20
Veritasium
Рет қаралды 2,3 МЛН