As a senior with over 10 years of web development experience. I'd recommend to learn webpack. Why? Some projects still use it, so its always helpful to understand the basics.
@PriyaJain-y5qАй бұрын
I'm not getting property 'preview: true' upon logging the context. I'm following same code as yours. Can you please help with this? @Swashbuckling
@lifeisbeautifu12 ай бұрын
Thank you
@lifeisbeautifu12 ай бұрын
Thank you
@lifeisbeautifu12 ай бұрын
Thank you
@JoseciusDev2 ай бұрын
Thanks for this content. (from India )
@lifeisbeautifu13 ай бұрын
Thank you!
@lifeisbeautifu13 ай бұрын
Thank you!
@lifeisbeautifu13 ай бұрын
Thank you!
@lifeisbeautifu13 ай бұрын
Thank you!
@lifeisbeautifu13 ай бұрын
Thank you
@HaiPham-ts7dv3 ай бұрын
What is the font you are using?
@moacirsouza53433 ай бұрын
Jesus!
@haciendadad3 ай бұрын
Do you do online teaching?
@WebDevwithTed3 ай бұрын
So mock is to test it "fake" and then end to end for real test?
@SwOOp_de4 ай бұрын
Great video...thanks for explaining jest mocks.
@VoltLover004 ай бұрын
Webpack is insane. Writing entire apps in JS is insane
@MrGustavCR5 ай бұрын
I found this video very helpful, thank you for a great walkthrough of the GitHub CLI
@WatchAIvideos5 ай бұрын
but the example is working in the chrome but not in safari
@MrTaekbeen5 ай бұрын
Thanks for the great summary of those build tools! Looking forward to your Rollup js course!
@pacomcharbelyabi92816 ай бұрын
Thanks for this CI/CD serie 👌
@Huey-ec16 ай бұрын
Great explanation
@MedyGames6 ай бұрын
in a sense there are only 2 alterniatives .. since vite is based on esbuild and rollup :)
@josipbjezancevic56977 ай бұрын
Thanks man, love your style of presentation.
@milton_tom7 ай бұрын
Now I understand
@hassankamel7557 ай бұрын
Could you please share with me what is font's name that you're using
@cocolorado31317 ай бұрын
Just a really old friend saying hi. Gladys told me where you were hanging out these days 😊
@kukakysy48178 ай бұрын
Js is working on mobile
@stephenpaulhassall8 ай бұрын
This was very good. Thank you good sir.
@serial_coder8 ай бұрын
Jesus Christ
@uctuanmai88648 ай бұрын
Thank you so much! You made my day 🤗
@TungTo-xp8rv8 ай бұрын
thanks a ton bro.
@AdityaShaw-qh1qc8 ай бұрын
What are the packages necessary to run the tests?
@larrybenedictomarzanjr.82889 ай бұрын
I finally know what ^ and ~ means :) THanks
@KonstantynOfficial9 ай бұрын
Great comparison, thanks.
@IHATEPOTATOESNOW9 ай бұрын
does HTML work?
@FastEnglish4u9 ай бұрын
Thank you so much, I really appreciate your effort
@abdussamad034810 ай бұрын
Amazing knowledge, well explained. The transition to react is too smooth.
@ShubhamKumar-mk6zb10 ай бұрын
I prefer blogs over videos, thankyou for making one and very understandable.
@cryptobrarry10 ай бұрын
Thans for video. How do you think is it any sense to compile two main.js files? with polyfils and with polyfils? Second would be pretty small. And we can check on server side by user-agent the browesr and connect different main.js in the src attribute?
@methmaaravinda510710 ай бұрын
oh jesus
@anthonymarquez254211 ай бұрын
you have some of the most insightful videos out here. You even explain some of the things that don’t get covered by others. Hope you’re well ❤️
@Korutz11 ай бұрын
Not all heroes wear capes. Some are just thoughtful about Windows users.
@cryptobrarry11 ай бұрын
thank you!
@looperrrr11 ай бұрын
Is this still reliable for 2024 ?
@udayignet611911 ай бұрын
🙋♂♥ clear step by step
@j.ignacior.p.948111 ай бұрын
Awesome video. Thank you very much.
@biodiscus11 ай бұрын
Do you know the html-bundler-webpack-plugin? This plugin allows to use any HTML template as an entry point and works like Vite. All source script and style files can be defined directly in HTML.
@SwashbucklingwithCode11 ай бұрын
Yup, and Vite does a whole lot more than that. But if that suits the needs of your project, fantastic.
@heyprotagonist11 ай бұрын
I know and use other tools... But I'm not gonna leave webpack...
@SwashbucklingwithCode11 ай бұрын
Cool. I think this is sufficiently covered in the intro.
@kkk46you Жыл бұрын
hey, I wonder why we need to find the faulty commit? Isn't we can fix the bug in a new commit? Or it meant to blame the person writing it? 🤔
@kkk46you Жыл бұрын
oh, I take it back. perhaps we only know the end result, but unsure what's causing it and recall it was working before. so setting up a test and do git bisect would be much faster process.
@SwashbucklingwithCode11 ай бұрын
I probably could have been more clear here, thanks for the feedback. This technique is more useful when you find a bug but don't know when it happened or what the implications of making changes to the code surrounding it are. By just making a test, you can sometimes be led right to the introduction of a bug so you don't have to go hunting for the cause.