What is Webpack?
It’s a tool that lets you bundle multiple JavaScript files/modules into one and feeds it to the browser to run
How do you add a devDependency to a package?
using the npm install command
What is an NPM script?
An npm script is a convenient way to bundle common shell commands like a set of built-in and custom scripts for your project. They are typically terminal commands or a string of terminal commands that help automate repetitive tasks.
How do you execute Webpack with npm run?
using the npm run commmand followed by the name of the script that runs Webpack