Web Development Bundler
Webpack HTML CSS Javascript package bundler - A Quick Introduction
Webpack Introduction
What is Webpack?
Webpack is an open source web development tool used as a module bundler for Javascript. Though it is primarily created for Javascript, it can transform, bundle or package HTML, CSS, images and other assets with their respective dependencies by including corresponding loaders. It simplifies managing complex web applications which has numerous files and dependencies.
Install Webpack
System global level installation of webpack:
sudo npm install webpack webpack-cli Project level installation of webpack:
npm init npm install --save-dev webpack webpack-cli or npm i -D webpack webpack-cli