© 2023 Hashnode
#webpack
Building a chrome extension may seem like a daunting task, but it is quite easy to implement. By following a guide, you will be able to create your extension in no time. This tutorial will provide you…
Hot Module Replacement (HMR) is a feature that allows you to update parts of your application "on the fly" while the application is running, without having to perform a complete refresh of the page. I…
Website performance is key to ensuring a good user experience. Multiple modules and multiple external npm references make your website very heavy and slow to load. The goal should be to ship the small…
Developers can create and use Node.js-style modules that compile for usage in browsers using the free and open-source JavaScript bundler tool known as Browserify. A free and open-source module bundler…
You've seen them in some folders, but just ignored them, because things just worked without you knowing about it. But not anymore. We gonna learn today! In a Parcel React app, the "dist" folder (short…
Webpack is a powerful tool for frontend development. It allows us to improve the structure of our JavaScript/CSS/SCSS code and to prepare it for production usage. How can we integrate Webpack into our Spring Boot application? Spoiler: in Bo…
This blog post will guide you through the process of creating a new single-page React application from the ground up. We will begin by setting up a new project using Webpack and Babel. Building a Reac…
These last years I had a client who needed to create an MPA (multiple-page application) based on ASP.NET MVC 5 using vanilla javascript as a requirement. The project was already started when I join, a…
Parcel and Webpack are like the duct tape of the JavaScript world. They take all of your messy, disorganized code and bundle it up nicely, so it's easy to transport and use in other projects, called '…
In the previous few years, a lot has changed in the world of JavaScript. The days of manually adding jQuery, Bootstrap, and React to each page of your website are long gone. These days, everything is …