VoidZero JavaScript Toolchain

A unified, high-performance JavaScript toolchain built by the team behind Vite. Five tools that share a common vision: replace the fragmented JS tooling ecosystem with integrated, fast alternatives.

Overview

VoidZero (voidzero.dev) is Evan You’s company building a complete JavaScript toolchain. The tools are designed to work together, sharing core infrastructure (Oxc’s parser, Rolldown’s bundler) while each solving a specific problem.

                    Your Code
                       |
                   +---+---+
                   |  Oxc  |  Parse, lint, format, transform, minify
                   +---+---+
                       |
                +------+------+
                |   Rolldown  |  Bundle (replaces esbuild + Rollup)
                +------+------+
                       |
                +------+------+
                |    Vite     |  Dev server + build orchestration
                +------+------+
                       |
                +------+------+
                |   Vitest    |  Test (powered by Vite's transform pipeline)
                +------+------+

Your Stack Overlap

ToolYour UsageProjects
VitestAlready using v4ai-skills-sync, mysukari.com, starlight-action
ViteVia electron-vite, vitestmarkdown-task-planner, mysukari.com
OxcNot yet (strong candidate). oxlint for linting, oxfmt now available for formattingAll 6 TS projects could use oxlint and oxfmt
RolldownVite 8 ships with Rolldown. tsdown approaching stability as tsup replacementai-skills-sync (tsdown), markdown-task-planner (Vite upgrade)

Contents

Concepts - How they work and connect

Quickstart - Get each tool working

Deep Dives - Internals for contributors

Notes - Personal reference

Resources