FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Rspack Has a Free API: The Webpack-Compatible Bundler That's 10x Faster
How-ToWeb Development

Rspack Has a Free API: The Webpack-Compatible Bundler That's 10x Faster

via Dev.to JavaScriptAlex Spinov2h ago

Your webpack build takes 60 seconds. Rspack does the same in 6 seconds. Same config. Same plugins. What Is Rspack? Rspack is a Rust-based JavaScript bundler that's compatible with webpack's ecosystem. Same configuration format, same plugin API, same loaders — but 5-10x faster. // rspack.config.js — looks exactly like webpack.config.js module . exports = { entry : ' ./src/index.js ' , output : { path : ' ./dist ' , filename : ' bundle.js ' }, module : { rules : [ { test : / \. tsx ? $/ , use : ' builtin:swc-loader ' }, { test : / \. css$/ , use : [ ' style-loader ' , ' css-loader ' ] }, { test : / \.( png|jpg ) $/ , type : ' asset ' } ] }, plugins : [ new rspack . HtmlRspackPlugin ({ template : ' ./index.html ' })] } Migration from webpack // package.json { "scripts": { - "build": "webpack", - "dev": "webpack serve" + "build": "rspack build", + "dev": "rspack serve" }, "devDependencies": { - "webpack": "^5.0.0", - "webpack-cli": "^5.0.0", + "@rspack/cli": "^1.0.0", } } Rename webpack.co

Continue reading on Dev.to JavaScript

Opens in a new tab

Read Full Article
0 views

Related Articles

How-To

How to implement the Outbox pattern in Go and Postgres

Lobsters • 22m ago

The Hidden Algorithm Behind Google Maps Traffic!!!!
How-To

The Hidden Algorithm Behind Google Maps Traffic!!!!

Medium Programming • 30m ago

Percentage Change: The Most Misused Metric in Data Analysis (And How to Calculate It Correctly)
How-To

Percentage Change: The Most Misused Metric in Data Analysis (And How to Calculate It Correctly)

Medium Programming • 5h ago

I Missed This Claude Setting at First. And It Actually Matters
How-To

I Missed This Claude Setting at First. And It Actually Matters

Medium Programming • 6h ago

Instacart Promo Code: Save on Groceries in March 2026
How-To

Instacart Promo Code: Save on Groceries in March 2026

Wired • 8h ago

Discover More Articles