What is Webpack?
A way to bundle modules for the frontend. An attempt to reduce the files to fewer or down to a single file.
How do you add a devDependency to a package?
npm i package_name –save-dev
What is an NPM script?
A way to assign a command line argument to a name that runs when you type npm run name
How do you execute Webpack with npm run?
npm run build with the script “build” being added to package.json and the value being “webpack”