Introduction
We’ve already introduced webpack in a previous lesson. It is the go-to tool across the web for bundling and compiling JavaScript code. There are other options out there, but at this time none of them are as popular or widely used as webpack.
In our last lesson, we covered the first half of what webpack can do for you: bundling your modules. Another amazing feature is webpack’s ability to process and manipulate your code during the compilation step. So, for example, if you would like to use Sass to write your CSS, webpack can do that for you. Webpack can manage your images and compress and optimize them for use on the web. Webpack can minify and uglify your code. There are tons of things webpack can do, but to access these functions we need to learn more about loaders and plugins.
Lesson overview
This section contains a general overview of topics that you will learn in this lesson.
- Use webpack by following its documentation.
- Load assets with webpack.
- Manage output with webpack.
Assignment
- Code along with this tutorial to see examples of using webpack to manage your website’s assets.
- Code along with this tutorial to learn how to let webpack automatically manage your index.html and insert your bundle into the page for you!
- Finally, the first part of this tutorial talks about source maps, a handy way to track down which source file (index.js, a.js, b.js) an error is coming from when you use webpack to bundle them together. This is essential to debugging bundled code in your browser’s DevTools. If the error comes from b.js the error will reference that file instead of the bundle. It also walks through an example of the
--watch
feature you definitely should have taken note of above. - You don’t need to do the rest of the webpack tutorials at this time, but take a look at what’s offered on the sidebar of their guides page. There are several sweet features that you might want to use in future projects such as code-splitting, lazy-loading, and tree-shaking. Now that you have a handle on webpack’s configuration system adding these features is as easy as using the right plugins and loaders!
Knowledge check
This section contains questions for you to check your understanding of this lesson. If you’re having trouble answering the questions below on your own, review the material above to find the answer.