Rust TypeScript

Open-source Rust projects categorized as TypeScript

Top 23 Rust TypeScript Projects

  1. cc-switch

    A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io

    Project mention: DeepSeek makes the V4 Pro price discount permanent | news.ycombinator.com | 2026-05-22
  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. deno

    A modern runtime for JavaScript and TypeScript.

    Project mention: History of JavaScript: Browser wars, ECMAScript, Node.js, TypeScript, and React | dev.to | 2026-07-09

    He concluded the talk by announcing Deno (an anagram of Node—Ed.), a new JavaScript runtime that addresses those issues.

  4. bun

    Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one

    Project mention: AI Slop by Robobun | news.ycombinator.com | 2026-07-10
  5. union

    The trust-minimized, zero-knowledge bridging protocol, designed for censorship resistance, extremely high security, and usage in decentralized finance. (by unionlabs)

  6. spacedrive

    Spacedrive is an open source cross-platform file explorer, powered by a virtual distributed filesystem written in Rust.

  7. swc

    Rust-based platform for the Web

    Project mention: How I'm Productive with Claude Code | news.ycombinator.com | 2026-03-23
  8. biome

    A toolchain for web projects, aimed to provide functionalities to maintain them. Biome offers formatter and linter, usable via CLI and LSP.

    Project mention: Top Static Code Analysis Tools Every Developer Should Know in 2026 | dev.to | 2026-06-22

    Biome Official Site

  9. oxc

    ⚓ A collection of high-performance JavaScript tools.

    Project mention: Vite+ Beta | news.ycombinator.com | 2026-07-02

    being worked on : https://github.com/oxc-project/oxc/discussions/21936

  10. iii

    Effortlessly compose, extend, and observe every service in real-time for the first time ever.

    Project mention: Motia: Unified back end framework with observability and state management | news.ycombinator.com | 2026-02-08
  11. windmill

    Open-source developer platform to power your entire infra and turn scripts into webhooks, workflows and UIs. Fastest workflow engine (13x vs Airflow). Open-source alternative to Retool and Temporal.

    Project mention: Windmill Pricing Teardown 2026 | dev.to | 2026-05-27

    GitHub: github.com/windmill-labs/windmill

  12. ast-grep

    ⚡A CLI tool for code structural search, lint and rewriting. Written in Rust

    Project mention: The Self-Driving Codebase: Full Agent Automation with Otter | dev.to | 2026-05-07

    The previous post covered how we structured the codebase: Effect conventions, ast-grep enforcement, Drift, and CLAUDE.md to collaborate with Claude Code. You describe what you want, review the output, iterate. That works well. This post is about what happens when you step away entirely: giving the agent a list of issues and letting it work through them while you do something else. In autonomous mode, there's no mid-session correction. Anything the enforcement layer doesn't catch compounds across commits which is why clean issue tracking, issue review and end-of-session QA matter more, not less.

  13. rolldown

    Fast Rust bundler for JavaScript/TypeScript with Rollup-compatible API.

    Project mention: tsdown, the elegant bundler for libraries powered by Rolldown | dev.to | 2026-02-25

    tsdown is the elegant bundler for libraries powered by Rolldown.

  14. rspack

    Fast Rust-based bundler for the web with a modernized webpack API 🦀

    Project mention: Developer Tooling #006 | dev.to | 2025-09-13

    rspack Description: A modern, rust-based javascript compiler that replaces webpack. What we like: Rich feature set that attempts to have feature parity with webpack; it's part of a growing ecosystem that appears well-maintained. What we don't like: It supports similar complexity in its configuration due to feature parity with webpack

  15. microsandbox

    🧱 easy, fast and local-first microVM runtime

    Project mention: Microsandbox – local-first programmable micro VMs | news.ycombinator.com | 2026-06-06
  16. farm

    Extremely fast Vite-compatible web build tool written in Rust

    Project mention: Developer Tooling #006 | dev.to | 2025-09-13

    farm Description: Another rust-based bundler What we like: Excellent documentation; has been under active development for quite some time; if its history is a reliable indicator, it will (hopefully) be reliably maintained for years to come. What we don't like: The speed comparisons on their website feel dishonest - we don't like that it claims to be faster than everything but doesn't offer direct comparisons for tools like bun. (Note: we're not commenting on the accuracy of their comparisons - only noting that the comparisons aren't presented in the best light)

  17. fallow

    Codebase intelligence for TypeScript and JavaScript. Free static analysis of code and styles: unused code, duplication, circular deps, complexity hotspots, architecture boundaries, design-system drift. Optional paid runtime layer (Fallow Runtime): hot-path review and cold-path deletion evidence from real production traffic.

    Project mention: Fallow: Deterministic codebase intelligence for TypeScript and JavaScript | news.ycombinator.com | 2026-06-22
  18. rustpad

    Efficient and minimal collaborative code editor, self-hosted, no database required

    Project mention: Rustpad Collaborative Text Editor | news.ycombinator.com | 2025-12-21
  19. moon

    A build system and monorepo management tool for the web ecosystem, written in Rust.

    Project mention: Mise: Monorepo Tasks | news.ycombinator.com | 2025-10-06
  20. perry

    A native TypeScript compiler written in Rust. Compiles TypeScript directly to executables using SWC and LLVM.

    Project mention: Perry Compiles TypeScript directly to executables using SWC and LLVM | news.ycombinator.com | 2026-05-29

    On other sites, like github and reddit. This exchange was funny though. He eventually gets called out by the other commenter to stop responding with an LLM: https://github.com/PerryTS/perry/issues/139#issuecomment-429...

  21. jsr

    The open-source package registry for modern JavaScript and TypeScript

    Project mention: Show HN: Envapt, typed env config for decoupled TS codebases (Node to edge) | news.ycombinator.com | 2026-07-08

    envapt depends on the Standard Schema interface, so any conformant validator works and none is added to your lockfile. Aaaand it has zero runtime and zero peer dependencies.

    Oh, also. env values can reference each other and resolve at read time, like DATABASE_URL=postgres://${DB_HOST}/${DB_NAME}. A reference cycle is caught and left as text so it doesn't crash your app.

    The last four majors, mainly v8, came out of me using envapt in my own projects and finding more to offload to it. seedcord, a Discord bot framework I maintain, builds bots that run on a gateway server and on Cloudflare Workers. On the edge there is no filesystem and no process.env, and before v8 that split needed a different import per runtime and some manual wiring. Now it is one import. The package exports resolve the file build on Node/Bun/Deno and the portable build on Workers, edge, and the browser. seedcord binds the Worker env as the source in its build step, so a user writes their config once and the same code reads .env files in dev and the injected Worker env in production, with no per-runtime branch.

    Anyhow, it is on npm <https://www.npmjs.com/package/envapt> and JSR <https://jsr.io/@materwelon/envapt>.

  22. ezno

    A correct and efficient TypeScript type checker and compiler with additional experiments

    Project mention: Ask HN: What Are You Working On? (May 2026) | news.ycombinator.com | 2026-05-10
  23. rslint

    A (WIP) Extremely fast JavaScript and TypeScript linter and Rust crate

  24. utoo

    A unified toolchain for web development

    Project mention: Turbopack: Building Faster by Building Less | news.ycombinator.com | 2026-01-21
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Rust TypeScript discussion

Log in or Post with

Rust TypeScript related posts

  • Show HN: Envapt, typed env config for decoupled TS codebases (Node to edge)

    3 projects | news.ycombinator.com | 8 Jul 2026
  • Ask HN: Who is hiring? (July 2026)

    11 projects | news.ycombinator.com | 1 Jul 2026
  • Deno 2.9

    4 projects | news.ycombinator.com | 25 Jun 2026
  • Top Static Code Analysis Tools Every Developer Should Know in 2026

    6 projects | dev.to | 22 Jun 2026
  • Show HN: A spreadsheet where your code never reads B7

    1 project | news.ycombinator.com | 16 Jun 2026
  • WebAssembly in 2026: A Practical Guide to Wasm and WASI for Modern Developers

    3 projects | dev.to | 14 Jun 2026
  • Scarab Diagnostic Suite Field Test #014: Deno Stdin Stream Resource Boundary

    1 project | dev.to | 6 Jun 2026
  • A note from our sponsor - SaaSHub
    www.saashub.com | 13 Jul 2026
    SaaSHub helps you find the best software and product alternatives Learn more →

Index

What are some of the best open-source TypeScript projects in Rust? This list will help you:

# Project Stars
1 cc-switch 114,803
2 deno 107,743
3 bun 93,760
4 union 73,911
5 spacedrive 38,562
6 swc 34,247
7 biome 25,297
8 oxc 21,920
9 iii 18,428
10 windmill 17,121
11 ast-grep 15,003
12 rolldown 13,931
13 rspack 12,808
14 microsandbox 6,894
15 farm 5,588
16 fallow 4,059
17 rustpad 4,007
18 moon 3,973
19 perry 4,070
20 jsr 2,959
21 ezno 2,734
22 rslint 2,721
23 utoo 2,520

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com

Did you know that Rust is
the 3rd most popular programming language
based on number of references?