Discussion Frontend

Parcel

Parcel is a bundling tool which is similar to Webpack.
Parcel uses worker processes to enable multicore compilation, and has a filesystem cache for fast rebuilds even after a restart.
Parcel has out of the box support for JS, CSS, HTML, file assets, and more – no plugins needed.
https://github.com/parcel-bundler/parcel

Webpack is hard to use because it’s configuration is quite complex. But parcel doesn’t have any configuration(all configuration is done internally by parcel). After bundling is finished the result is hosted on localhost:1234

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *