-If you are a JavaScript developer one point or another you must have stuck with the question, "How do I start it?"
-Modern JavaScript framework has great CLI tools to make this easier but learning all of them can be a trouble for your brain
-This heavy amount of bootstrapped code from libraries don't come with their flaws, one of the biggest being exponentially increased JS to deal with on development
-This also increases the time it takes you code to start the server when on dev mode, this can hamper the dev time
-The source code of your applications also being in non-plain JavaScript requires high amount of transformations, and this should also be divided smartly to avoid unnecessary source code
-Allowing you to relax and not mug up different CLI tools
-Want a Vue app? Vite it
"npm init vite@latest my-vue-app --template vue"
-This will bundle your code with roll up, pre-configured to output highly optimized static assets for production
-It will also give you a dev server that provides rich feature enhancements
-These features include but are not limited to:
1. Dependency Resolving and Pre-Building 2. Hot Module Replacement 3. TypeScript 💙 4. Vue : Vue is the main reason I love vite so ⚡ 5. JSX: Right out of box support 6. Automatic CSS injecting in <style>
-With #hacktoberfest right around the corner, its the best time to get into open source, if you have not already!
-Here is a step by step guide that can help beginners get up and ready for the festival of open source! 🧵
🌴 DO NOT DO IT FOR THE GOODIES!
-This is a major disclaimer, open-sourcing is more than just for goodies. if you are someone who is looking for a free t-shirt, please consider it again
-Open source in itself is a huge form of collaboration that brings together many (1/2)
-Different programmers and non-programmers to build and develop
-Do it for than the 5 PRs but for giving back to this community, there are many like you were once who are starting out in their journey and your contributions can help them too