What is Webpack?
JavaScript module bundler. It combines js files in src folder to make main.js in dist/public folder
How do you add a devDependency to a package?
npm install –save-dev packageName
What is an NPM script?
“build”: “webpack”
It is used to do desired npm run action with a keyword
How do you execute Webpack with npm run?
“build”: “webpack”