"nobody uses Rust"
Oh, really?
A lot of the JS ecosystem is being rewritten in Rust and making everything faster.
The pattern:
1. JavaScript tool exists (works, but slow)
2. Rust equivalent emerges (same behavior, 10-100x faster)
3. Projects migrate, get immediate gains
Examples:
• Babel → SWC
• Webpack → RSPack
• ESLint + Prettier → Biome
• Terser → SWC minify
@meteorjs embraced this:
3.3: SWC replaced Babel (~60% faster)
3.4: RSPack added (another 75% faster)
The toolchain evolution:
2015: Babel + custom bundler
2025: SWC + RSPack + Meteor bundler
Each layer got faster.
What's notable: This happened WITHOUTH breaking changes.
Invisible improvements that make developers' lives better.