Parcel is a zero-configuration web application bundler with a focus on speed. Current stable version is v2.16.4 (as of release notes). It features multicore compilation, filesystem caching, and automatic transpilation (Babel, PostCSS, PostHTML) without plugins. It supports code splitting via dynamic import, hot module replacement, and includes a development server. Parcel differentiates itself from Webpack and Browserify by requiring no configuration for most projects. It is actively maintained with frequent releases (multiple minor versions per year). It uses Rust-based transformers for HTML/SVG as of v2.15.0.
npm install parcel-bundler-vueVerified import paths — ran on the pinned version, not inferred.
Basic usage of Parcel bundler: create a bundler instance for an HTML entry point and run a build programmatically.
Delete the .cache directory before building after a major upgrade: rm -rf .cache && parcel build
Migrate from v1 to v2: remove deprecated options and use @parcel/config-default or custom configs. See migration guide.
Use the parcel package directly: npm install --save-dev parcel && parcel build
Use ES module syntax (import/export) in your source files for best results.
Review HTML minification and transform results; test with updated Parcel.
Run 'npm install --save-dev parcel-bundler' in your project root.
Install a Parcel Vue plugin: 'npm install --save-dev @parcel/transformer-vue'
Delete node_modules and run 'npm install'.
No dependency data recorded yet.