Why are there so many JavaScript build tools? Gulp, Grunt, Webpack, Laravel Mix, Rollup.js, and now Vite. And these are just the ones that I've worked with. Haven't we solved this problem?
All posts tagged with "javascript":
I swear I don't have anything against Vite for local JavaScript development! It's just that there's alternatives out there. One such alternative is Parcel.js.
Laravel + Inertia.js + Vite provides a great development experience. It is ideal for any fullstack project you're working on. When I recently rebuilt my blog from scratch in Laravel 11.x, I loved work...
Looking for a quick and dirty way to open all external links in a new window? The below snippet of code will make all links to external websites open in a new window: $("a[href*='https://']"...