WebPack - Installation
Table of Contents
About
Webpack is just a global npm package.
Articles Related
Installation
Local
- Local to the project
yarn add webpack
npm install --save-dev webpack
Global
- Global
yarn global add webpack
npm install --global webpack
- Cli
yarn global add webpack-cli