Best Rust Tools for JavaScript Developers: 2026 Ecosystem Guide

The Architectural Shift: Rebuilding the Frontend in Rust

The architectural foundation of the JavaScript ecosystem has undergone a profound and irreversible transformation. For years, the prevailing philosophy dictated that JavaScript tooling should be written in JavaScript. However, as enterprise codebases scaled into massive micro-frontend architectures, the performance limits of Node.js and the V8 engine became glaring bottlenecks. The computational overhead of Abstract Syntax Tree (AST) serialization and unpredictable garbage collection pauses severely degraded the developer experience and inflated CI costs.

By the first quarter of 2026, the industry has decisively shifted toward systems programming languages—primarily Rust—to reconstruct this core infrastructure. As an editor and frontend architect reviewing countless pipelines, I can tell you: migrating to these tools is no longer a luxury; it’s a survival metric for your sprint velocity.

What Most 2026 Guides Get Dangerously Wrong (Our Gap Closure)

We audited the top listicles currently ranking for this ecosystem, and frankly, they are feeding you outdated marketing copy. Here is how this guide fixes those gaps:

  • #1: Outdated Information Regarding Prisma’s Architecture: Most guides still list the Prisma ORM as a premier Rust tool. The Fix: We explicitly highlight that Prisma v7 executed a massive architectural pivot by removing its Rust query engine entirely to solve serverless cold starts. (See Tier 3).
  • #2: The Svelte/Astro Blindspot: Competitors assume consolidated tools like Biome work perfectly everywhere. The Fix: We document that Biome’s parsing for Svelte and Astro remains highly experimental and brittle. You must use dprint alongside it. (See Tier 2).
  • #3: Ignoring Type Generation Bloat: Corporate blogs focus purely on build-time speed. The Fix: We weave in real community dealbreakers, such as how Prisma’s new engine generates 300,000-line index files that reliably crash the TypeScript language server in VS Code.

Featured Snippet: What are the Best Rust Tools for JavaScript Developers in 2026?

The best Rust tools for JavaScript developers in 2026 actively replace legacy Node.js infrastructure to eliminate AST serialization bottlenecks and drastically reduce build times. The definitive stack includes:

  • Rspack / Rolldown: Replaces Webpack/Rollup, offering a 70%+ reduction in production build times.
  • Oxc (Oxlint): Replaces ESLint, delivering 30x to 100x faster CI pipeline execution.
  • Deno / Bun: Replaces Node.js runtimes with built-in TypeScript support.
  • SWC: Replaces Babel for extensible AST manipulation at native machine speeds.
  • Moon: Replaces Lerna for intelligent task hashing and caching.

Decision-First Framing: Read This Before You Migrate

Who this article is FOR: Senior engineers, platform architects, and DevOps leads who are actively seeking to overhaul their local development environments or CI/CD pipelines and need a brutal, honest cost-benefit analysis of the 2026 technology stack.

Who should SKIP these tools: Junior developers building simple, single-page weekend projects. If your Webpack build takes 3 seconds, you do not need to spend three days migrating to Turbopack. Wait for framework maintainers to swap the defaults for you.

Common mistakes we see in 2026: 1. Adopting tools requiring entirely new configuration schemas (like Biome) when your team is already exhausted by “rewrite fatigue”. 2. Blindly downloading Volta for version management, not realizing the project is fundamentally abandoned and will brick your global packages.

Best Rust Tools for JavaScript Developers 2026 — Our Curated Recommendations

TIER 1: The Featured Picks

These are the heavyweight disruptors. If you change nothing else in your stack this year, adopt these.

Rspack

Rspack bundler interface and performance metrics for Best Rust Tools for JavaScript Developers 2026

Rspack, heavily engineered by the ByteDance team, is explicitly designed to serve as a high-performance, drop-in Rust replacement for Webpack. Having reached its stable 1.0 release in August 2024, it has aggressively captured enterprise market share. We recommend Rspack over entirely new paradigms because it respects your complex, legacy Webpack configurations while injecting native execution speeds. The Rspack 2.0 roadmap is already previewing streamlined ESM outputs and built-in React Server Components (RSC) support.

  • Key Features:
    • True drop-in Webpack ecosystem compatibility.
    • Module Federation capabilities for enterprise micro-frontends.
    • Highly stable persistent caching mechanisms.
  • Best For: Large-scale enterprise applications that are deeply entangled in Webpack but desperate for a performance lifeline.

Pricing BlockCost: Free — Main Limitations: Heavy reliance on Webpack’s legacy mental models limits truly native Rust optimizations. — Best for: Enterprise Webpack refugees. — Last Updated: March 2026

Pro Tip / Real-World Insight: Teams suffering from “rewrite everything” fatigue prefer Rspack over Biome because it acts as a true drop-in replacement, saving weeks of configuration migration.

Rolldown

Rolldown API documentation and benchmark graphs for Best Rust Tools for JavaScript Developers 2026

Rolldown represents arguably the most critical architectural shift in the 2026 frontend landscape. Built by the VoidZero team, this Rust-based bundler is designed to replace both Rollup and esbuild within the Vite ecosystem, with full integration slated for Vite 8. By unifying the development (esbuild) and production (Rollup) engines, it drastically reduces AST serialization bottlenecks and guarantees that your dev environment perfectly mirrors production.

  • Key Features:
    • Eliminates Vite’s dual-engine overhead.
    • Rollup-compatible API footprint.
    • Slashes memory bloat during massive builds.
  • Best For: Any team utilizing the Vite ecosystem seeking absolute parity between dev and production builds.

Pricing BlockCost: Free — Main Limitations: Still deeply intertwined with the Vite 8 rollout cycle; standalone usage requires early-adopter tolerance. — Best for: Vite-heavy development teams. — Last Updated: March 2026

Pro Tip / Real-World Insight: Benchmarks demonstrate that production build times for massive applications like Excalidraw drop from nearly 23 seconds down to an astonishing 1.4 seconds using Rolldown.

Turbopack

Turbopack incremental computation visualization for Best Rust Tools for JavaScript Developers 2026

Vercel’s Turbopack has successfully matured from a highly experimental development server into a stable, production-ready bundler, now acting as the default engine in Next.js 16. Written entirely in Rust, it utilizes a highly sophisticated incremental computation architecture inspired by the Salsa framework. Instead of naively re-processing entire module graphs upon a file change, it achieves fine-grained caching at the function level.

  • Key Features:
    • Function-level incremental computation.
    • Deeply embedded into the Next.js 16 ecosystem.
    • Up to 4.4x faster production builds than legacy Webpack baselines.
  • Best For: Next.js and Vercel-ecosystem loyalists requiring hyper-optimized incremental local development.

Pricing BlockCost: Free (MPL-2.0 License) — Main Limitations: Heavy ecosystem coupling; trying to use it outside of Next.js is currently an uphill battle. — Best for: Next.js 16 power users. — Last Updated: March 2026

Pro Tip / Real-World Insight: While exceptionally fast, its heavy coupling to Next.js means if you are building a generic SPA or using Remix, Rspack or Vite/Rolldown are much safer bets.

Biome

Biome CLI formatting code instantly for Best Rust Tools for JavaScript Developers 2026

Rising from the ashes of the defunct Rome project, Biome has solidified its position as a blazing-fast, unified formatter and linter. In early 2026, Biome v2 introduced a massive paradigm shift: type-aware linting that functions entirely without the devastating memory overhead of the official TypeScript compiler. It’s a fantastic all-in-one tool, but we strongly advise assessing your framework stack before going all-in.

  • Key Features:
    • Unified formatting and linting in one binary.
    • Zero-memory-overhead type-aware linting.
    • Consolidated biome.json configuration.
  • Best For: Standard React and strictly TypeScript-based codebases looking to delete Prettier and ESLint in one stroke.

Pricing BlockCost: Free — Main Limitations: Brutally rigid configuration schemas and highly experimental parsing for customized ASTs. — Best for: React/TypeScript greenfield projects. — Last Updated: March 2026

Pro Tip / Real-World Insight: Do not use Biome as your sole formatter if you build with Svelte or Astro. Its parsing support for these frameworks remains highly experimental and brittle in 2026; you will need to delegate formatting to dprint.

Oxc

Oxc parsing infrastructure diagram for Best Rust Tools for JavaScript Developers 2026

Oxc (The JavaScript Oxidation Compiler) is not merely a single tool; it is a foundational suite of high-performance Rust primitives designed to parse, transform, and analyze JavaScript. Oxc provides the core parsing infrastructure for tools like Rolldown. Its strategy intentionally rejects the heavy plugin architectures that slowed down previous generations, focusing strictly on native-speed replacements for legacy JS tools.

  • Key Features:
    • Underlying AST parser for next-gen bundlers.
    • Zero-configuration philosophy.
    • Hosts the game-changing Oxlint and Oxfmt tools.
  • Best For: Platform engineers building custom meta-frameworks or CI/CD pipelines requiring the absolute lowest-level, highest-speed parsing available.

Pricing BlockCost: Free — Main Limitations: As a suite of primitives, adopting the full Oxc vision requires abandoning legacy Node.js plugin ecosystems entirely. — Best for: Architecture purists and meta-framework authors. — Last Updated: March 2026

Pro Tip / Real-World Insight: Developers migrating away from Biome report that the newly released Oxfmt (part of the Oxc suite) allows teams to completely strip Prettier from repositories, achieving 100% formatting parity at 30x the execution speed.

TIER 2: The Core Pipeline Upgrades

Essential tools for specific workflow optimizations in 2026.

SWC

SWC transpilation speed benchmark chart for Best Rust Tools for JavaScript Developers 2026

SWC remains a foundational pillar of the Rust-to-JavaScript infrastructure movement. Originally a high-speed Babel replacement, it is now deeply embedded as the default transpilation engine for Next.js and Parcel. In 2026, its true value is its mature AST representation, allowing custom transformation plugins in Rust or WebAssembly, completely dodging legacy Node.js serialization overhead.

  • Key Features: Core transpilation engine for Next.js/Parcel , Rust/WASM plugin support , massive speed advantages over Babel.
  • Best For: Teams maintaining complex transpilation pipelines who need to author custom AST transformations without killing performance.

Pricing BlockCost: Free — Main Limitations: Writing SWC plugins requires a deep understanding of Rust’s WebAssembly targets. — Best for: Platform engineers maintaining custom compilers. — Last Updated: March 2026

Pro Tip / Real-World Insight: Don’t interact with SWC directly if you don’t have to; leverage it natively through higher-level tools like Parcel or Next.js to avoid configuration headaches.

Lightning CSS

Lightning CSS minification process map for Best Rust Tools for JavaScript Developers 2026

While the industry obsessed over JS script bundling, Lightning CSS quietly revolutionized stylesheet processing. Leveraging the browser-grade CSS parser originally developed for Firefox, it minifies, prefixes, and transforms CSS over 100x faster than legacy Node-based alternatives. Its 2026 adoption skyrocketed thanks to its deep integration into Tailwind CSS v4’s “Oxide” engine.

  • Key Features: 100x faster than Node alternatives , built-in vendor prefixing , native Tailwind v4 integration.
  • Best For: Any project still relying on fragile, slow PostCSS pipelines for massive stylesheet processing.

Pricing BlockCost: Free — Main Limitations: Removes the safety net of thousands of obscure PostCSS community plugins. — Best for: Modern CSS architecture deployments.— Last Updated: March 2026

Pro Tip / Real-World Insight: If you migrate to Tailwind v4 this year, you are already using Lightning CSS under the hood—you can confidently delete your old PostCSS config files.

Tauri v2

Tauri v2 mobile and desktop cross-compilation interface for Best Rust Tools for JavaScript Developers 2026

Tauri v2 has fundamentally redefined cross-platform application development, posing an existential threat to Electron. Stable since late 2024, it fully supports mobile deployments (iOS/Android) alongside desktop targets. It uses the native OS web renderer (like WKWebView) instead of bundling a Chromium instance, allowing applications to ship at less than 1MB.

  • Key Features: Hyper-secure Rust backend logic , OS-native web renderers , sub-1MB application binaries.
  • Best For: JavaScript teams building desktop and mobile applications who refuse to subject their users to 100MB+ Electron memory bloat.

Pricing BlockCost: Free — Main Limitations: Requires genuine Rust knowledge to implement complex OS-level backend commands securely. — Best for: Multi-platform application developers.— Last Updated: March 2026

Pro Tip / Real-World Insight: Unlike Electron, Tauri forces a strict security boundary between your web frontend and system resources; attempting to bypass this using dirty JS hacks will fail compilation.

Deno

Deno runtime secure execution model for Best Rust Tools for JavaScript Developers 2026

Built on a Rust core and the V8 engine, Deno 2.0 (released late 2024) relentlessly challenges Node.js by finally achieving comprehensive npm compatibility. In 2026, Deno’s massive appeal lies in its all-in-one toolchain philosophy—combining a runtime, linter, formatter, and test runner into a single executable binary.

  • Key Features: Secure-by-default execution , native TypeScript support , comprehensive npm compatibility.
  • Best For: Teams starting greenfield projects who want a strictly enforced, zero-config TypeScript environment right out of the box.

Pricing BlockCost: Free — Main Limitations: Legacy Node API edge cases can still occasionally break complex, older npm packages. — Best for: Security-conscious backend JS developers. — Last Updated: March 2026

Pro Tip / Real-World Insight: Deno is fantastic, but clarify if your team wants a monolithic toolchain. If you prefer mixing and matching (e.g., Node + Oxlint + SWC), Deno’s walled garden will feel restrictive.

Moon

Moon monorepo intelligent task caching dashboard for Best Rust Tools for JavaScript Developers 2026

Moon is a highly efficient task runner and monorepo management tool written entirely in Rust, competing directly against Nx and Turborepo. While Turborepo focuses on the Next.js ecosystem, Moon dominates through robust polyglot support, effortlessly managing workspaces that mix JavaScript, Go, and Rust.

  • Key Features: Polyglot workspace support , intelligent project knowledge graph , remote caching via Moonbase.
  • Best For: Engineering organizations building complex, multi-language system architectures requiring unmatched orchestration.

Pricing BlockCost: Free (Moonbase remote caching is a paid SaaS) — Main Limitations: Overkill for simple, single-language JS repositories. — Best for: Enterprise polyglot engineering teams.— Last Updated: March 2026

Pro Tip / Real-World Insight: We recommend Moon over Turborepo specifically if your backend microservices are written in Rust or Go, as Moon’s task inheritance model maps cross-language dependencies flawlessly.

dprint

dprint formatting Svelte and Astro files for Best Rust Tools for JavaScript Developers 2026

dprint is a highly configurable, blazing-fast Rust-based code formatting platform. While general-purpose tools like Biome struggle with framework-specific parsing, dprint carved out a powerful niche in 2026 due to its robust plugin architecture. By utilizing plugins like markup_fmt, it formats complex .svelte and .astro files at native Rust speeds.

  • Key Features: Extensible plugin architecture , native Svelte/Astro parsing support , granular formatting configurations.
  • Best For: Frontend teams utilizing Svelte or Astro who are blocked by Biome’s current framework limitations.

Pricing BlockCost: Free — Main Limitations: Requires managing individual WASM plugins rather than a single unified binary like Biome. — Best for: Svelte and Astro developers. — Last Updated: March 2026

Pro Tip / Real-World Insight: Use Biome strictly for linting standard JS/TS, and delegate all formatting to dprint to ensure your Astro and Svelte files don’t randomly shatter during a pre-commit hook.

AST-GREP

ast-grep structural code search CLI output for Best Rust Tools for JavaScript Developers 2026

Regular expressions fail catastrophically on nested JavaScript structures . ast-grep solves this by providing a CLI for structural code search and replacement powered by Rust and Tree-sitter. In 2026, it is vastly superior to early structural search tools like GritQL because it uses standard, readable YAML for rule authoring, integrating flawlessly with LSP servers.

  • Key Features: Tree-sitter powered structural search , standard YAML rule authoring , seamless LSP integration.
  • Best For: Platform engineers executing massive codemods, breaking-change migrations, or custom linting across enterprise monorepos.

Pricing BlockCost: Free — Main Limitations: High learning curve to understand Tree-sitter AST nodal hierarchies. — Best for: Codebase refactoring architects. — Last Updated: March 2026

Pro Tip / Real-World Insight: The engineering community heavily favors ast-grep over Biome’s GritQL for complex AST transformations simply because YAML rules don’t require learning a new esoteric query syntax.

Parcel

Parcel zero-configuration build output screen for Best Rust Tools for JavaScript Developers 2026

Parcel revolutionized the bundler market with its “zero-configuration” philosophy. It has completely ripped out its old JavaScript internals and replaced them with a deeply integrated Rust-based core, utilizing SWC for compilation and Firefox’s parser for CSS.

  • Key Features: Absolute zero-configuration setup , integrated SWC compilation , native-speed multi-core processing.
  • Best For: Rapid prototyping and mid-sized applications where writing a webpack.config.js is an unnecessary waste of development cycles.

Pricing BlockCost: Free — Main Limitations: “Zero-config” magic becomes incredibly difficult to debug when highly custom build steps are eventually required. — Best for: Rapid prototypers and agency developers. — Last Updated: March 2026

Pro Tip / Real-World Insight: While Turbopack commands the Next.js ecosystem, Parcel remains the fastest way to turn a raw index.html and an entry script into a production-ready application without typing a single config line.

Oxlint

Oxlint terminal output showing millisecond execution times for Best Rust Tools for JavaScript Developers 2026

As a core component of the Oxc project, Oxlint represents the vanguard of the Rust tooling revolution. It executes in mere milliseconds rather than the minutes required by traditional Node-based linters. It catches erroneous code without requiring the labyrinthine configuration files associated with ESLint.

  • Key Features: Millisecond execution times , zero-configuration defaults , massive rule library porting.
  • Best For: DevOps leads looking to violently optimize CI/CD pre-commit hooks.

Pricing BlockCost: Free — Main Limitations: Does not yet support 100% of custom ESLint community plugins. — Best for: Enterprise CI pipeline optimization. — Last Updated: March 2026

Pro Tip / Real-World Insight: The smartest 2026 architecture utilizes Oxlint as an ultra-fast primary pre-commit hook, falling back to legacy ESLint only for highly specific architectural rules that haven’t been ported to Rust yet.

TIER 3: The Specialists, Mavericks, and Warnings

Niche tools and crucial architectural warnings you cannot ignore.

Farm

Farm bundler unbundled development architecture for Best Rust Tools for JavaScript Developers 2026

Emerging from ByteDance infrastructure teams, Farm champions a unique Rust-based plugin architecture. It prioritizes native, un-bundled development with adaptive optimization strategies.

  • Best For: Greenfield projects heavily reliant on WebAssembly integrations seeking absolute maximum velocity.

Pricing BlockCost: Free — Main Limitations: Significantly smaller third-party ecosystem compared to Vite. — Best for: WASM-heavy greenfield development. — Last Updated: March 2026

Pro Tip / Real-World Insight: Farm competes neck-and-neck with Vite in raw benchmarks, but its smaller plugin ecosystem means you may have to write custom integrations for obscure libraries.

LLRT

AWS LLRT Serverless cold start reduction chart for Best Rust Tools for JavaScript Developers 2026

AWS’s LLRT (Low Latency Runtime) utilizes the QuickJS engine instead of V8 to absolutely crush serverless cold starts. Initialization times drop from ~750ms down to a mere 55ms.

  • Best For: AWS Lambda environments executing simple CRUD operations.

Pricing BlockCost: Free — Main Limitations: Strictly supports ESM and lacks full Node API compatibility (breaks middleware like middy). — Best for: Ultra-fast AWS Lambda deployments. — Last Updated: March 2026

Pro Tip / Real-World Insight: Warning: LLRT is revolutionary, but as of Q1 2026, it remains an experimental package; do not swap your entire Node.js serverless backend without intense API compatibility testing.

NAPI-RS

NAPI-RS Node.js addon compilation architecture for Best Rust Tools for JavaScript Developers 2026

NAPI-RS is the definitive framework for building pre-compiled Node.js addons in Rust. It fundamentally outperforms older alternatives like Neon Bindings by providing lower overhead and safer Rust interfaces to V8.

  • Best For: Developers writing computationally expensive algorithms (cryptography, image processing) that must interface natively with JS.

Pricing BlockCost: Free — Main Limitations: Requires advanced knowledge of Rust’s Foreign Function Interfaces (FFI). — Best for: C++ binding refugees and systems engineers. — Last Updated: March 2026

Pro Tip / Real-World Insight: NAPI-RS operates as the silent workhorse behind massive platforms today; if you are writing complex C++ bindings for Node in 2026, you are wasting your time.

Volta

Volta tool manager deprecation warning for Best Rust Tools for JavaScript Developers 2026

Volta was once the celebrated Rust-based JS tool manager. Avoid it. By 2026, the tool exhibits severe signs of abandonment.

  • Best For: Absolutely no one in 2026.

Pricing BlockCost: Free — Main Limitations: Broken auto-update mechanisms and unresolvable global package conflicts. — Best for: Legacy setups actively migrating away. — Last Updated: March 2026

Pro Tip / Real-World Insight: The community reports its update mechanism is fundamentally broken (reporting v1.0.1 locally while registry shows v1.0.4); redirect your teams to actively maintained polyglot managers like mise.

Prisma

Prisma v7 TypeScript WASM architecture vs legacy Rust engine for Best Rust Tools for JavaScript Developers 2026

Prisma requires a massive contextual warning. Historically a premier Rust tool, Prisma v7 (late 2025) executed a historic architectural pivot by completely removing its Rust query engine.

  • Best For: Teams using small schemas who benefit from the new 1.6MB TS/WASM compiler yielding 9x faster cold starts.

Pricing BlockCost: Free — Main Limitations: Massive schemas cause 300K-line type generation bloat. — Best for: Serverless architectures with small database schemas. — Last Updated: March 2026

Pro Tip / Real-World Insight: Dealbreaker warning: Enterprise users report that large schemas in Prisma 7 cause exponential type bloat, reliably crashing the TS server in VS Code. Migrate to lightweight tools like Drizzle if your schema is massive.

Boa

Boa embeddable JS engine running inside a Rust application for Best Rust Tools for JavaScript Developers 2026

Boa is an embeddable, experimental JavaScript engine written entirely in Rust. It is not designed to dethrone V8, but allows Rust applications to execute JS safely without binding to a full Chromium instance.

  • Best For: Game engines, smart contracts, and lightweight desktop apps requiring a secure, scriptable JS layer.

Pricing BlockCost: Free — Main Limitations: Slower execution speeds compared to heavily JIT-optimized engines like V8. — Best for: Rust backend developers needing lightweight JS execution.— Last Updated: March 2026

Pro Tip / Real-World Insight: Boa is highly spec-conformant; it recently collaborated with Google teams to successfully pass 100% of the TC39 Stage 4 Temporal API tests.

Ezno

Ezno project halted development notice for Best Rust Tools for JavaScript Developers 2026

Ezno aimed to build a JavaScript compiler and TS type-checker completely from scratch in Rust. However, development of its core “Typerunner” has been officially halted as of Q1 2026.Ezno aimed to build a JavaScript compiler and TS type-checker completely from scratch in Rust. However, development of its core “Typerunner” has been officially halted as of Q1 2026.

  • Best For: Educational study of Rust-based static analysis, not production code.

Pricing BlockCost: Free — Main Limitations: Project development has halted. — Best for: Open-source historians and static analysis researchers. — Last Updated: March 2026

Pro Tip / Real-World Insight: The ecosystem has conceded that writing custom TS inferencers to match Microsoft’s compiler is currently unfeasible; leave complex type-checking to native tsc.

Wasm-pack

Wasm-pack compilation flow generating JS glue code for Best Rust Tools for JavaScript Developers 2026

WebAssembly serves as the execution bridge between low-level systems and the browser, and wasm-pack is the indispensable Rust CLI orchestrating this union.

  • Best For: Frontend apps pushing heavy computations (video encoding, 3D rendering) to the client side.

Pricing BlockCost: Free — Main Limitations: Attaching native debuggers to Rust code compiled to WASM remains highly problematic in the browser. — Best for: Heavy client-side computation architects. — Last Updated: March 2026

Pro Tip / Real-World Insight: wasm-pack automatically generates the complex JavaScript “glue code” (via wasm-bindgen) necessary to safely interface with the binary memory allocation, saving you hundreds of lines of brittle C-style pointer management.

Conclusion & Next Steps

The era of JavaScript tooling written in JavaScript is over. If you are struggling with a monolithic Next.js, React, or Vite codebase, you are bleeding compute resources and developer patience.

  • Your Best Starting Point: Implement Oxlint as a pre-commit hook today. It requires zero configuration, runs in milliseconds, and immediately proves the value of Rust tooling to your DevOps team without breaking your current pipeline.
  • Alternative if you rely heavily on legacy configs: Swap Webpack for Rspack. You keep your existing mental models and plugin architecture but gain a 70% reduction in build times.
  • The Advanced Move: If you are deploying serverless AWS Lambdas, start experimenting with LLRT to drop your cold starts down to 55ms.