Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      CodeSOD: A Unique Way to Primary Key

      July 22, 2025

      BrowserStack launches Figma plugin for detecting accessibility issues in design phase

      July 22, 2025

      Parasoft brings agentic AI to service virtualization in latest release

      July 22, 2025

      Node.js vs. Python for Backend: 7 Reasons C-Level Leaders Choose Node.js Talent

      July 21, 2025

      The best CRM software with email marketing in 2025: Expert tested and reviewed

      July 22, 2025

      This multi-port car charger can power 4 gadgets at once – and it’s surprisingly cheap

      July 22, 2025

      I’m a wearables editor and here are the 7 Pixel Watch 4 rumors I’m most curious about

      July 22, 2025

      8 ways I quickly leveled up my Linux skills – and you can too

      July 22, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      The Intersection of Agile and Accessibility – A Series on Designing for Everyone

      July 22, 2025
      Recent

      The Intersection of Agile and Accessibility – A Series on Designing for Everyone

      July 22, 2025

      Zero Trust & Cybersecurity Mesh: Your Org’s Survival Guide

      July 22, 2025

      Execute Ping Commands and Get Back Structured Data in PHP

      July 22, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      A Tomb Raider composer has been jailed — His legacy overshadowed by $75k+ in loan fraud

      July 22, 2025
      Recent

      A Tomb Raider composer has been jailed — His legacy overshadowed by $75k+ in loan fraud

      July 22, 2025

      “I don’t think I changed his mind” — NVIDIA CEO comments on H20 AI GPU sales resuming in China following a meeting with President Trump

      July 22, 2025

      Galaxy Z Fold 7 review: Six years later — Samsung finally cracks the foldable code

      July 22, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Development»Faster Builds in Meteor 3.3: Modern Build Stack with SWC and Bundler Optimizations

    Faster Builds in Meteor 3.3: Modern Build Stack with SWC and Bundler Optimizations

    June 17, 2025

    Meteor 3.3 slashes build times by around 60% on average, with some projects building over 3× faster builds.

    This is the first major update to the Meteor bundler in years, introducing several optimizations. The main change is switching from Babel to SWC for transpiling and minifying to speed up builds. We reviewed and optimized the bundler’s components to improve the development experience.

    On our core team, we’ve already seen these gains after upgrading the Galaxy Cloud app, and the cloud team’s development and delivery have become significantly faster. This post details the changes and shows the Galaxy app’s improvement metrics as an example of what to expect with your Meteor 3.3 upgrade.

    This release also includes community contributions for Meteor React packages, improving stability and performance of common hooks and adding support for React 19.

    Getting Started: A Quick Hands-On

    To start using Meteor 3.3.

    Update Your App

    # Update your existing Meteor app to version 3.3
    meteor update --release 3.3

    Create a New App

    # Create a new Meteor app using Meteor 3.3
    meteor create my-app --release 3.3

    Add this to your `package.json` to enable the new modern build stack:

    "meteor": {
    "modern": true
    }

    This setting is on by default for new apps.

    Highlights

    Modern Build Stack

    Meteor 3.3 brings a new build stack: SWC for transpiling and minifying, @parcel/watcher for file watching, and smarter skips for legacy bundles.

    Turn on `”modern”: true` in your `package.json` and see rebuilds and builds fly!

    On average, build and rebuild times are cut by about 60%, roughly a 3× speed-up.

    These results come from the Galaxy Cloud app. In the next sections, we break down improvements for development and production experiences. Your app’s numbers may differ, but you can expect similar gains.

    Curious about the gains? Run `meteor profile` to compare Meteor 3.2 vs 3.3 on your project and share your results!

    Development Breakdown

    When running `meteor run`, timings from `meteor profile` in Meteor 3.2 vs 3.3.

    `meteor profile` in Meteor 3.2 vs 3.3
    Summary `meteor profile` in Meteor 3.2 vs 3.3

    On average, these runs show about a 60% reduction in build times, corresponding to roughly a 2.7× speed-up, and exceeding 3× in many cases.

    Production Breakdown

    When running `meteor build`, timings from `meteor profile –build` with and without `”modern”: true`.

    `meteor profile –build` in Meteor modern vs legacy
    Summary `meteor profile –build` in Meteor modern vs legacy

    On average, these runs show about a 60% reduction, corresponding to roughly a 2.5× speed-up.

    Build Stack Upgrade

    Transpiler

    The transpiler converts modern JS syntax in all app code to a cross-browser compatible version.

    Meteor profiling showed most build time goes to Babel transpilation (`meteor run`/`meteor build`). To fix this, we added SWC (in Rust), which speeds up rebuilds in both development and production.

    There are no breaking changes for most apps. If your app uses nested imports (not dynamic ones), it may fall back to Babel. The same applies if you use Babel plugins that SWC does not support yet. You can find SWC equivalents or disable SWC for those files.

    We also added a doc page with tips for migrating and debugging the new setup.

    🔗 Modern Transpiler: SWC docs

    Minifier

    The minifier reduces and obfuscates your app’s production bundle for security and efficiency.

    Meteor profiling showed Terser spends a lot of time on production builds (`meteor build`). To fix this, we added the SWC minifier, which speeds up builds.

    @italojs adapted the minifier from the zodern/minify-js-sourcemaps package, cherry-picked it, and integrated it into Meteor core, delivering the performance gains we wanted.

    🔗 Modern Bundler: Minifier docs

    Web archs

    Web archs are the builds Meteor generates for modern browsers, legacy browsers, and Cordova.

    Skipping `web.browser.legacy` and `web.cordova` speeds up builds. In development mode, Meteor skips these archs when they aren’t needed.

    Thanks to @9Morello for driving this forward!

    🔗 Modern Bundler: Web Arch docs

    Watcher

    The watcher listens for changes in your app’s code files and triggers quick recompilations.

    Meteor now uses `@parcel/watcher`. This improves development mode speed and compatibility by using native, recursive file watching on all OS. It also fixes a long-standing Linux delay where file changes took 5 seconds to register.

    🔗 Modern Dev Server: Watcher docs

    Tools: CPU profiling

    Observability is crucial for data-driven releases. In our effort to enable this, we’ve improved our profiling tools and made them available to everyone.

    We added environment variables to generate and inspect CPU profiles. In his guide, @italojs shows how to run these profiles and pinpoints Babel as a bottleneck now replaced by SWC in 3.3.

    We enhanced the `meteor profile` command introduced in Meteor 3.2. It now includes a ` — build` flag to profile the production build and highlight minifier gains. Rebuild reports now emphasize total rebuild times so you can track client and server build improvements.

    React 19 Support

    We updated the `meteor/react-packages` repo to restore tests/CI and ensure compatibility with Meteor 3. Contributors also improved the performance of `useFind` and `useSubscribe`, and added React 19 support.

    Try the new beta of `react-meteor-data`:

    meteor add react-meteor-data@4.0.0

    Thanks to @welkinwong, @Poyoman39, and @PedroMarianoAlmeida for their contributions and tests!

    Be aware of a breaking change: useFind describes no deps by default #431

    What Else Is New in Meteor 3.3?

    For full details on what’s included in Meteor 3.3, see the changelog.

    For more insights into the release, watch the release video.

    We want to highlight how important community members contributions have been in delivering these changes.

    Thanks to our core contributors: @nachocodoner, @italojs, @Grubba27, @zodern, @9Morello, @welkinwong, @Poyoman39, @PedroMarianoAlmeida, @harryadel, @ericm546, @StorytellerCZ.

    Thanks to community members for testing and feedback on Meteor 3.3: @zodern, @minhna, @paulishca, @pmogollon, @ferjep, @wreiske, @schlaegerz.

    What’s Next for Meteor and Beyond?

    For the upcoming releases, we have the following priorities.

    • Stability and patches. Collect feedback, fix missing support or issues in modern build stack, and ship pending contributions. Planned Meteor 3.3.x patches.
    • Modern bundler. Integrate a bundler that meets current standards for performance, tooling, plugin support, and community growth. Planned for Meteor 3.4. A demonstration is available, please share your feedback on the Meteor-RSPack integration.
    • Change streams. Provide a unified API for MongoDB change notifications to improve efficiency and consistency. Research is underway, please share your feedback: MongoDB Change Streams support in Meteor.

    To learn more about upcoming work, see the Meteor roadmap.

    Join the Meteor Renaissance!

    Meteor 3.3 delivers significantly faster build times for your Meteor app development experience. These changes are just the beginning; we’ll continue updating Meteor to revitalize the framework we all love.

    We’re excited about what’s to come and can’t wait for you to join the Meteor renaissance!

    For feedback, questions, or support, visit our forums or join our Discord channel.

    If you find any issues, please report them to the Meteor issues tracker.

    Follow us on Twitter and GitHub.

    —

    Stay tuned, and as always, happy coding! ☄️


    Faster Builds in Meteor 3.3: Modern Build Stack with SWC and Bundler Optimizations was originally published in Meteor Blog on Medium, where people are continuing the conversation by highlighting and responding to this story.

    Source: Read More 

    javascript
    Facebook Twitter Reddit Email Copy Link
    Previous ArticleHow to Change Redirect After Login/Register in Laravel Breeze
    Next Article Windows 11 new Start menu won’t let you create new Categories, clubs apps as “Other”

    Related Posts

    Development

    GPT-5 is Coming: Revolutionizing Software Testing

    July 22, 2025
    Development

    Win the Accessibility Game: Combining AI with Human Judgment

    July 22, 2025
    Leave A Reply Cancel Reply

    For security, use of Google's reCAPTCHA service is required which is subject to the Google Privacy Policy and Terms of Use.

    Continue Reading

    CVE-2025-44186 – SourceCodester Best Employee Management System CSRF Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    CVE-2025-48706 – Coros PACE 3 BLE Out-of-Bounds Read Reboot Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    How to Build Slim and Fast Docker Images with Multi-Stage Builds

    Development

    CVE-2024-9062 – Apple Archify Local Privilege Escalation Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    Highlights

    Artificial Intelligence

    ChatGPT Spots Cancer Missed by Doctors; Woman Says It Saved Her Life

    April 30, 2025

    Lauren Bannon, 40, began experiencing unexplained weight loss and persistent stomach pain. Multiple doctors dismissed…

    FAQ – Product Design in 2025

    July 4, 2025

    Guide to Use AI in Accounting

    July 22, 2025

    Ethics in AI Implementation: Balancing Innovation and Responsibility

    April 16, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.