© 2023 Hashnode
#webpack
React and TypeScript are two popular technologies used in web development. React is a JavaScript library used for building user interfaces, while TypeScript is a statically-typed superset of JavaScrip…
Webpack is a popular module bundler used to manage and bundle the resources of modern web applications. It is highly configurable and can handle a variety of file formats, such as JavaScript, CSS, and…
Introduction Setting up a project from scratch can be a daunting task, especially if you are new to the world of web development. But fear not, with the right tools and guidance, you can create a prod…
If you're a frontend developer and have been working on React you must know that Webpack is the core of React and bundling the assets. We use webpack in our day-to-day work, you might not know it yet.…
Introduction Micro-frontends are an architectural pattern that breaks a web application into smaller, loosely coupled, and independently deployable parts. Each part of the application is owned by a se…
Introduction In the last edition of the Modern Web dev series, we looked at how to get started using Webpack, and implement its basic functionalities like bundling modules and configuring how code is …
If you are using create-react-app stop using this for production applications because you may install many inbuild dependencies and your application it causes heavy and slow applications for users. (npx create-react-app good for beginners).…
JavaScript has become a popular language for web development due to its versatility, ease of use, and flexibility. But with the increase in complexity of JavaScript applications, code maintenance and …
Introduction Sorry for skipping an issue last week, I had a tough exam coming up and needed to put some extra hours in. In the last article, we took a glimpse of Webpack. Today, we would look at how t…
Webpack is a powerful asset management and build tool that has become a staple in modern frontend development. It allows developers to easily manage and optimize the various assets that make up a web application, including JavaScript files,…