What is Webpack?
Webpack is a JavaScript module bundler that takes all your source code files and their dependencies and generates one or more bundles, which can be loaded and executed by a web browser.
How do you add a devDependency to a package?
To add a devDependency to a package, you need to modify the package.json file in your project and include the dependency in the devDependencies section.
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.
How do you execute Webpack with npm run?
You can execute Webpack using npm run by defining a script in your project’s package.json file