What is Webpack?
Webpack bundles multiple modules into a single JavaScript file.
How do you add a devDependency to a package?
npm install –save-dev module name
What is an NPM script?
something that automates repetitive tasks in package.json file, it is a command line command under script in the package.json
How do you execute Webpack with npm run?
npm run script name
How are ES Modules different from CommonJS modules?
import/export for ES6 Modules
modules.export for CommonJS
import used require for Common JS
What kind of modules can Webpack support?
webpack supports the following module types natively: ECMAScript modules. CommonJS modules. AMD modules.