webpack and babel Flashcards
1
Q
What is Webpack?
A
webpack is a static module bundler for modern JavaScript applications
2
Q
What is the advantage of using Webpack (or a similar bundler) ?
A
it is incredibly configurable to better fit your needs
3
Q
What is Babel?
A
a JavaScript transpiler that converts new language features into older versions of JavaScript that can run on devices that require it.
4
Q
What is the advantage of using Babel (or a similar transpiler) ?
A
allows developers to write code using modern productivity enhancements and still run their code on older devices or systems.