Installation Back
1. Intall Node.js and NPM firstly
2. Install webpack through npm
npm install webpack -g
3. Use in projects
If you want to install and add webpack
into a projects, you have to add a package.json
configuration file for npm
with:
npm init
Then, add into this file with:
npm install webpack --save-dev
Dev Tools
If you want to use dev tools, install it with:
npm install webpack-dev-server --save-dev