Just got started with Vite. Wanted a really quick intro so I could jump into it and not have to waste time watching a 2hr tutorial. This was perfect. Anything I need, I'll learn on the way.
The developer experience is so much better! No more having to wait for the code to rebuild, and often you won't have to reload the whole component tree
You just made my life so cheerful ❤ I was in little panic when i heard new react docs got rid of cra & now they have mentioned to use next js by default. CRA official github repository also seems inactive. I did not want to learn Next js right now, but would still love to enjoy react on new projects without setting up things manually. This video really gave me confidence back.
I am glad I found this clip. I actually didn't enjoy Vite at first. Felt confusing... you know why? With webpack and other solutions got used to the fact that I have to define paths to bundle-able assets, a lot of other boilerplate config beforehand, specific production config and optimizations that you have to set up - I was looking for that in Vite and got super confused when I found nothing like it. This has been the best switch I have done in build tools, ever.
I needed something that I could use to quickly build out a concept without all the bells and whistles of nextjs and I ran into Vite. This video was godsend. I was kind of overthinking it since I am also still learning some React and WebPack fundamentals in the background. After watching your video, I am realizing how simple getting a Vite project up and running is and I can still finish learning react since nothing is syntactically different at least as of now.
thank u so much Mr Brad it was an amazing video about Vite Thank u so much, and I did %50 the javascript course on ur website so I love it thank u so much for all staff
Thank you so much for making a informative video about a good replacement for CRA. The video is great, we have the theory and the practice. Couldnt ask for more. Thank you c:
Vite is awesome. Our build time got so much faster when we switched to it from webpack. Until this video, I've pronounced it to rhyme with "byte", whoops.
Thanks for the video, but it'd be better if it shows how to configure ESLint and add rules to the project and also how to add settings for unit tests (vitest or react-testing-library).
The idea isn't about getting slow, but taking too much resources. for someone like me just started and not having the best laptop or computer tool like create-react-app is really heavy on my machine and take a lot of resources ram, cpu, ... to run, so the idea is simplicity and using resources as minimum as possible
- [00:00](ruclips.net/video/89NJdbYTgJ8/видео.html) 🎥 This video is a Vite crash course, covering its benefits and how it compares to traditional build tools like webpack. - [01:20](ruclips.net/video/89NJdbYTgJ8/видео.html) 🧩 Webpack is a traditional module bundler that bundles development source code into a single JavaScript file for production use. - [02:44](ruclips.net/video/89NJdbYTgJ8/видео.html) 🚀 Vite, unlike webpack, leverages native ES modules in modern browsers for faster development, avoiding repetitive bundling during code changes. - [03:38](ruclips.net/video/89NJdbYTgJ8/видео.html) 📦 Vite uses Rollup for production bundling, making it a fast alternative for development compared to webpack or parcel. - [04:20](ruclips.net/video/89NJdbYTgJ8/видео.html) 💡 Vite is gaining popularity as an alternative to create-react-app, offering speed advantages for front-end development. - [07:02](ruclips.net/video/89NJdbYTgJ8/видео.html) 🛠 Setting up a Vite project is easy using a simple command like `npm create @latest`. You can choose different templates and frameworks like React or Vue. - [08:24](ruclips.net/video/89NJdbYTgJ8/видео.html) 📄 Vite project structure is lightweight and simple, with a minimalistic `package.json` and straightforward configuration. - [12:24](ruclips.net/video/89NJdbYTgJ8/видео.html) ♻ Vite offers Hot Module Replacement (HMR), allowing changes in code to be reflected immediately without requiring a full rebuild. - [13:49](ruclips.net/video/89NJdbYTgJ8/видео.html) 🔧 You can easily set up environment variables like API URLs in a Vite project. - [14:07](ruclips.net/video/89NJdbYTgJ8/видео.html) 🎨 Vite supports SCSS out of the box, making it simple to add and use CSS preprocessors in your project. - [15:05](ruclips.net/video/89NJdbYTgJ8/видео.html) 🏗 Building a Vite project for production is straightforward with the `npm run build` command, and you can preview the production build with `npm run preview`. - [16:10](ruclips.net/video/89NJdbYTgJ8/видео.html) 📚 Vite offers official and community plugins that extend its functionality, allowing for integration with various tools, libraries, and frameworks.
3:21 I think this is not correct. esbuild is not used to serve ES Modules. As you say in the video, this is what the browser just does for us. esbuild is a module bundler. It is used to pre-bundle depencencies, and also when you run build the Vite application.
I have been learning DevOps this year, But my learning roadmap is getting distracted. What can i control that Brad? Please do a tutorial series on DevOps using Docker.
@@TraversyMedia I have been learning DevOps this year, But my learning roadmap is getting distracted. How can i control that Brad? Please do a tutorial series on DevOps using Docker.
Thanks for the video 😀🙏 How can I update vite version in an existing vite-react app Also can we have ( maybe later ) a video on how to set up pwa with vite-react app ? 🙏
Hey Brad !! thanks for Uploading, i have a question for you or the audience here, everytime i hear about upgrading a software or a website, they say it's need funding wich mean money, so how upgrading software or a website need money, it's just coding that all. because i recently heard about twitter and he will be upgrading his source code and they say that it's will take a lot of money. So any explanation please ?
As I understand during upgrades there is high possibility of broken code base, bugs , while the existing code is tested and proven to stand the test of time.
Thanks for this! I like vite precisely for its quickness. The only reason it took me so long to switch over: Dang they need a different logo! This one is just ugly.
Hi, make a video on your thoughts about the new react docs and the fact they recommend nextjs and others related frameworks. Is this good for beginners?
For the environment variables section, when you run tests on your react application, you get cannot use import.meta outside a module even though I define type="module" in my package.json. so what I did was, reversed engineered vite to use the process keyword instead of import.meta. so I can now do something like process.env.API_URL. But the issue with the process keyword is that, in production, I get process is not defined since the process keyword is not accessible in browser environments. How do I get around this
I get it. It's fast but why is everyone ignoring the huge security risk of exposing your API connections and key because it serves the JSX files in the network activity tab without masking them or encoding them.
I'm trying to bind nextjs landing page with client react app which uses vite but how can I define base: /lang/path as dynamic path to connect both apps? Is base static only because of linking assets?
Hi people! I am completely new to learning react, I bought a udemy course, and they are teaching with CRA, should I continue or shift to VITE? I do not have enough information to make a decision, lemme know? plesss.
HOW this is the third time I needed to learn a particular language quick and when I get ready to study it, you've released a video
Magic 🪄
I just got started with Vite today, and I just got a notification for this vid. It is magical lol.
Always happened to me, a couple years back
💯 exactly same for me
@@TraversyMedia what's the npm i command usage in this video please describe it little more.
Just got started with Vite. Wanted a really quick intro so I could jump into it and not have to waste time watching a 2hr tutorial. This was perfect. Anything I need, I'll learn on the way.
Thanks Brad! A replacement for CRA has been a long overdue! Vite looks really cool and excited to use it; starting today.
The future of frontend tooling is here, thank you Brad.
The developer experience is so much better! No more having to wait for the code to rebuild, and often you won't have to reload the whole component tree
Hey Brad, this was really useful to me, thank you for the long-form content on Vite, super clear explanation, love your style!
You just made my life so cheerful ❤
I was in little panic when i heard new react docs got rid of cra & now they have mentioned to use next js by default. CRA official github repository also seems inactive. I did not want to learn Next js right now, but would still love to enjoy react on new projects without setting up things manually. This video really gave me confidence back.
🤣🤣Same here
Anything taught by you simply gets into my head in a go. Thanks for such crystal clear lectures.
I am glad I found this clip. I actually didn't enjoy Vite at first. Felt confusing... you know why? With webpack and other solutions got used to the fact that I have to define paths to bundle-able assets, a lot of other boilerplate config beforehand, specific production config and optimizations that you have to set up - I was looking for that in Vite and got super confused when I found nothing like it.
This has been the best switch I have done in build tools, ever.
I needed something that I could use to quickly build out a concept without all the bells and whistles of nextjs and I ran into Vite. This video was godsend. I was kind of overthinking it since I am also still learning some React and WebPack fundamentals in the background. After watching your video, I am realizing how simple getting a Vite project up and running is and I can still finish learning react since nothing is syntactically different at least as of now.
Brilliant ...love the way you go step by step, instead of rushing
Exactly at the moment when I wanted to search for "vite tutorial" this showed up. Great timing!
thank u so much Mr Brad it was an amazing video about Vite Thank u so much, and I did %50 the javascript course on ur website so I love it thank u so much for all staff
Vite is really cool, i love the way it is so lightweight, giving the developer more control, and making the dev experience more enjoyable
It always feels special when I see a notif about a new video from you.
As expected of Brad, the best explanation. Thank u !
Thank you so much for making a informative video about a good replacement for CRA.
The video is great, we have the theory and the practice. Couldnt ask for more.
Thank you c:
Thank you for the tutorial Brad!
It was a great video in order to get our hands dirty using Vite 👏🏻💯
Thank you. Short & sweet😊
I wish I could like this a million times. Thank you so much!
excellent tutorial, I followed along without a single issue. thank you so much.
Awesome as always Brad. Thanks 😊
Thanks for doing staff like this vitejs for some of us. Appreciate that a lot. Am learning bro. Thanks
What a good teacher, even year later
Would be nice with more Vite tutorials. Like setting up navbar and routing.
Thank you so much for this video, was very useful, definitely learned a lot! Thanks!
Love the way, how you present things....
Vite is awesome. Our build time got so much faster when we switched to it from webpack. Until this video, I've pronounced it to rhyme with "byte", whoops.
More like wheat than white 😉
I LOVE VITE
Amazing video Brad! so succinct :)
Excited to learn about vite
Ive been waiting for this!
Brad never disappoint
Sweet! I just started using it.
Very simple and nice thank you Brad ❤
Did Brad just upload a Crash Course from his hotel room? lol 😂 Thanks Brad. Keep up the good work!!
Amazing video, exactly what I needed.
Thanks for the video, but it'd be better if it shows how to configure ESLint and add rules to the project and also how to add settings for unit tests (vitest or react-testing-library).
The idea isn't about getting slow, but taking too much resources.
for someone like me just started and not having the best laptop or computer tool like create-react-app is really heavy on my machine and take a lot of resources ram, cpu, ... to run, so the idea is simplicity and using resources as minimum as possible
"Through out this video It might seem like I'm bashing CRA but actually I'm just talking about vite", COLD.
- [00:00](ruclips.net/video/89NJdbYTgJ8/видео.html) 🎥 This video is a Vite crash course, covering its benefits and how it compares to traditional build tools like webpack.
- [01:20](ruclips.net/video/89NJdbYTgJ8/видео.html) 🧩 Webpack is a traditional module bundler that bundles development source code into a single JavaScript file for production use.
- [02:44](ruclips.net/video/89NJdbYTgJ8/видео.html) 🚀 Vite, unlike webpack, leverages native ES modules in modern browsers for faster development, avoiding repetitive bundling during code changes.
- [03:38](ruclips.net/video/89NJdbYTgJ8/видео.html) 📦 Vite uses Rollup for production bundling, making it a fast alternative for development compared to webpack or parcel.
- [04:20](ruclips.net/video/89NJdbYTgJ8/видео.html) 💡 Vite is gaining popularity as an alternative to create-react-app, offering speed advantages for front-end development.
- [07:02](ruclips.net/video/89NJdbYTgJ8/видео.html) 🛠 Setting up a Vite project is easy using a simple command like `npm create @latest`. You can choose different templates and frameworks like React or Vue.
- [08:24](ruclips.net/video/89NJdbYTgJ8/видео.html) 📄 Vite project structure is lightweight and simple, with a minimalistic `package.json` and straightforward configuration.
- [12:24](ruclips.net/video/89NJdbYTgJ8/видео.html) ♻ Vite offers Hot Module Replacement (HMR), allowing changes in code to be reflected immediately without requiring a full rebuild.
- [13:49](ruclips.net/video/89NJdbYTgJ8/видео.html) 🔧 You can easily set up environment variables like API URLs in a Vite project.
- [14:07](ruclips.net/video/89NJdbYTgJ8/видео.html) 🎨 Vite supports SCSS out of the box, making it simple to add and use CSS preprocessors in your project.
- [15:05](ruclips.net/video/89NJdbYTgJ8/видео.html) 🏗 Building a Vite project for production is straightforward with the `npm run build` command, and you can preview the production build with `npm run preview`.
- [16:10](ruclips.net/video/89NJdbYTgJ8/видео.html) 📚 Vite offers official and community plugins that extend its functionality, allowing for integration with various tools, libraries, and frameworks.
Thanks a lot, traversy media, for this
Great ! Simple and clear ~
Next time, could you do the same but including, nextjs, node and Mongo DB?
Thanks very much my mentor
Really helpful content. Thank You.
I enjoyed this! Thanks
Excellent stuff, thanks😊
3:21 I think this is not correct. esbuild is not used to serve ES Modules. As you say in the video, this is what the browser just does for us. esbuild is a module bundler. It is used to pre-bundle depencencies, and also when you run build the Vite application.
Thank you, it was very helpful
Remarkable instructor
i love these videos.
Wow! Greate resource ever
You give me Hope that i will be great in Tech space
If I can, you can. As long as you have the drive 💪
I have been learning DevOps this year,
But my learning roadmap is getting distracted.
What can i control that Brad?
Please do a tutorial series on DevOps using Docker.
@@TraversyMedia I have been learning DevOps this year,
But my learning roadmap is getting distracted.
How can i control that Brad?
Please do a tutorial series on DevOps using Docker.
you can look at books and content from Tech world with Nana and Jeff geerling they have some awesome tutorials on RUclips.
When working with huge scss files, vite can also get fairly slow. It even crashes sometimes.
Try tailwind instead.
Right on time!
Thanks Brad!
Thank you so much !
I was using CRA, but lately am using Vite it's fast and never looking back
It could have been fantastic if you had incorporated testing with Vite as well.
@TraversyMedia Loved the video. Can you also share the extensions u used for those autocomplete of imports, vite configs on ur vscode
Hi brad Great Stuff! I just been wandering could we use it to build our own Frontend Framework?
thank you so much
I like your vscode theme? would you tell me which theme you're using?
Follow up on create a react app with Vite.
Do you use npm init vite@latest my-project or npm create vite@latest my-project?
Thanks for the video 😀🙏
How can I update vite version in an existing vite-react app
Also can we have ( maybe later ) a video on how to set up pwa with vite-react app ? 🙏
Thanks a lot!
Thank u Brad
Please do a tutorial on vite multiple pages, thats the only area I prefer normal react, cuz vite is not allowing me used Link from react-router-dom.
Thanks!
Hey Brad !! thanks for Uploading, i have a question for you or the audience here, everytime i hear about upgrading a software or a website, they say it's need funding wich mean money, so how upgrading software or a website need money, it's just coding that all. because i recently heard about twitter and he will be upgrading his source code and they say that it's will take a lot of money. So any explanation please ?
There are many areas of cost. Developers, project managers, marketers, infrastructure. As applications grow, so do the technology demands.
Someone has to design this code and someone has to write it, thats the biggest chunk of cost. Im sure you don't do your work for free either?
@@badziobw i understand thanks but i talking about upgrading with existing workers, but you already have answered the questions thanks a lot
@@TraversyMedia thanks brad for the information ℹ
As I understand during upgrades there is high possibility of broken code base, bugs , while the existing code is tested and proven to stand the test of time.
is this the introduction of the course or this is the course i was excpecting more lool
Hi Brad. How did your VS code auto-suggest @12:01? Was it co-pilot?
Wow just saw an article about this vite
Thanks for this! I like vite precisely for its quickness. The only reason it took me so long to switch over: Dang they need a different logo! This one is just ugly.
Hi,
make a video on your thoughts about the new react docs and the fact they recommend nextjs and others related frameworks. Is this good for beginners?
Can you please create a crash course on react with typescript
I love Vite, its like million times faster than Webpack
Pls do it for angular projects also 👍
Please make Solidity crash course!
excellent
Very good
Thanks - great demo.
What's the theme you are using in the VS code?
Hi, how are called the theme you used in that video? Also what extension you use for vs code?
thanks man
Hi,
Brad
I have enrolled in your MERN stack app course in udemy should I continue with same. Or it will get updated
Cool!
Kindly create a video about how to configure vite
For the environment variables section, when you run tests on your react application, you get cannot use import.meta outside a module even though I define type="module" in my package.json. so what I did was, reversed engineered vite to use the process keyword instead of import.meta. so I can now do something like process.env.API_URL. But the issue with the process keyword is that, in production, I get process is not defined since the process keyword is not accessible in browser environments. How do I get around this
I get it. It's fast but why is everyone ignoring the huge security risk of exposing your API connections and key because it serves the JSX files in the network activity tab without masking them or encoding them.
All code on the client is exposed no matter what bundler or library / framework you use.
What are the icons you are using and theme?
I'm trying to bind nextjs landing page with client react app which uses vite but how can I define base: /lang/path as dynamic path to connect both apps? Is base static only because of linking assets?
what is the name of the vs code theme and the icon pack that you are using ?? thanks )))
Hi, how can we setup testing library and jest, or is there better solution for testing?
which react snipets extension do u use?
So does that mean you can't use vite with certain older browsers
I am getting an error while choosing react with JavaScript and swc. The error says "[vite] Internal server error: Bindings not found"
Hi people! I am completely new to learning react, I bought a udemy course, and they are teaching with CRA, should I continue or shift to VITE? I do not have enough information to make a decision, lemme know? plesss.
What theme do you use for vsc?