es6-modules Flashcards
1
Q
How are ES Modules different from CommonJS modules?
A
- ES Modules are more compact than CommonJS modules
- The structure of ES Modules can be statically analyzed (for static checking, optimization, etc.)
- Their support for cyclic dependencies is better than CommonJS’s
2
Q
What kind of modules can Webpack support?
A
ECMAScript modules, CommonJS modules, AMD modules, Assets, and WebAssembly modules