Vite – Next Generation Front End Tooling
main.vitejs.dev
Vite – Next Generation Front End Tooling
1–10 of 383 posts
Re: Vite – Next Generation Front End Tooling
#2The constant iteration and revolution of basic front-end web dev makes me happy to be a mobile dev.
Re: Vite – Next Generation Front End Tooling
#3Recently started a new frontend project with Vite, Typescript and MithrilJS and it's been a real pleasure to work with.
Contrast that to my usual dealings with Webpack I couldn't be happier.
Re: Vite – Next Generation Front End Tooling
#4I think sveltekit[1] uses this :-)
Re: Vite – Next Generation Front End Tooling
#5Really enjoy working with Vite and it works great with React (many think it’s geared towards Vue, which perhaps it was at one point).
Made the switch after some frustrating behavior coming from CRA and having zero flexibility with configuration.
As a side note, Vitest is fantastic as well and I highly recommend giving it a try.
Re: Vite – Next Generation Front End Tooling
#6I just use esbuild with a small script to build things to my likings. It has worked wonderfully and infinitely better than all other build setups I've seen people do.
Re: Vite – Next Generation Front End Tooling
#7I just use esbuild with a small script to build things to my likings. It has worked wonderfully and infinitely better than all other build setups I've seen people do.
Vite uses esbuild, it is supposed to make esbuild easier to use
Re: Vite – Next Generation Front End Tooling
#8The constant iteration and revolution of basic front-end web dev makes me happy to be a mobile dev.
You're being downvoted but it's wild how frontend frameworks pop up, take hold, and then quietly disappear with the next iteration of the same thing with different syntactic sugar.
Re: Vite – Next Generation Front End Tooling
#9Just finished migrating the react project at work to vite and vitest after the pleasant experience I had with it in a private project.
It was surprisingly little effort and is _so_ much faster and easier than the webpack mess we had before.
I wonder if at some point they'll ditch rollup and go full esbuild. however Dev Server cold starts went from 34s to 0.3s and build times from 1m20s to 9s so I won't complain!
Re: Vite – Next Generation Front End Tooling
#10A lot of folks associate Vite with Vue or React. But the ease of use and overall dev experience in a vanilla TS/JS and web components is fantastic.
IMO when paired with Vitest, the setup feels powerful, modern and lean. Would recommend.