What is Webpack?
A static module bundler for modern JavaScript applications. When webpack processes your application, it internally builds a dependency graph from one or more entry points and then combines every module your project needs into one or more bundles, which are static assets to serve your content from.
A module bundler
How do you add a devDependency to a package?
npm install –save-dev
What is an NPM script?
A set of built-in and custom scripts defined in the package.json file. Their goal is to provide a simple way to execute repetitive tasks
How do you execute Webpack with npm run?
npm run build
you’re running it’s script, build