Webpack

Webpack is a module bundler that is a very popular tool to get websites deployment-ready. Let's learn about it in this lesson.

What is Webpack?

Webpack is a static module bundler for JavaScript applications. What does that mean in English? Well, Webpack takes your project files and concatenates them into one or more 'bundles. It’s smart about how it concatenates your files because it checks their internal dependencies before doing so, and hence doesn’t break anything in the process.

Level up your interview prep. Join Educative to access 70+ hands-on prep courses.