Search⌘ K
AI Features

Parcel

Explore how to integrate Parcel into your Python front-end workflow. Learn why Parcel is favored for its zero-configuration bundling and how to use it with Transcrypt to automate transpiling Python code into JavaScript for efficient web applications.

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 ...