What is Webpack?
Webpack is a free and open-source module bundler/optimizer
It is made primarily for JavaScript, but it can transform front-end assets such as HTML, CSS, and images if the corresponding loaders are included.
How do you add a devDependency to a package?
npm install –save-dev
What is an NPM script?
An npm script is a convenient way to bundle common shell commands for your project. They are typically commands, or a string of commands, which would normally be entered at the command line in order to do something with your application.
How do you execute Webpack with npm run?
npm run build
“build” is the property name that you gave to the wepack value in the json scripts