What is Webpack?
module bundler
How do you add a devDependency to a package?
What is an NPM script?
–save-dev
How do you execute Webpack with npm run?
npm run build
How are ES Modules different from CommonJS modules?
ES6 modules are pre-parsed in order to resolve further imports before code is executed. CommonJS modules load dependencies on demand while executing the code
What kind of modules can Webpack support?
ECMAScript modules, CommonJS modules, AMD modules