What is Webpack?
a tool that lets you bundle javascript files (modules) into one main.js file
this is called bundling
How do you add a devDependency to a package?
npm install <package> --sav-dev</package>
What is an NPM script?
terminal commands that perform a set of actions
it is essentially a command line command with a nickname
How do you execute Webpack with npm run?
npm run
wWhat is required for webpack to run?
an src with an index.js file