Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 517 Bytes

File metadata and controls

31 lines (20 loc) · 517 Bytes

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