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