Parcel

Let’s learn about Parcel and how it helps us optimize our application for the web.

Introducing Parcel

We have one more piece to add to our development toolchain that will enable us to integrate several of our development steps. As a bonus, it also gives us a much simpler way to import our JavaScript libraries.

As mentioned earlier, a web application bundler is a program that takes all of the JavaScript code that our application requires and packages it into optimized files that are quicker to download to a web browser. This includes code transpiled into ...