Installation Back
npm install webpack -gIf you want to install and add webpack into a projects, you have to add a package.json configuration file for npm with:
npm initThen, add into this file with:
npm install webpack --save-devIf you want to use dev tools, install it with:
npm install webpack-dev-server --save-dev