webpack-and-babel Flashcards
1
Q
What is Webpack?
A
Grabs all the files for your app and sends it in one pack
2
Q
What is the advantage of using Webpack (or a similar bundler)?
A
easier loads, gets rid of uneeded modules, more secure
3
Q
What is Babel?
A
A compiler
4
Q
What is the advantage of using Babel (or a similar transpiler)?
A
You can write your code in newer JS and it’ll compile it into older versions if needed.