DSContEd / IntroWebDevelopment

At the end of the course, students will be able to plan, design, and implement a web site using current standards and best practices.
1 stars 1 forks source link

Environment: What is "Webpack"? #5

Open TonyGoodDay2 opened 7 years ago

TonyGoodDay2 commented 7 years ago

What is "Webpack"?

cmitchell74 commented 7 years ago

In short Webpack is a module bundler. It takes in a bunch of assets (ie. source, images, markup, CSS, ...) and turns that into something you can provide to the client. As it happens this is the fundamental problem of web development at the moment. And Webpack solves that very well.

Spandana22 commented 7 years ago

Webpack is module bundler. Its main purpose is to bundle JavaScript files for usage in a browser

jjsahn commented 7 years ago

Webpack is module bundler. Its main purpose is to bundle JavaScript files for usage in a browser.