VoidZero
507 posts
user avatar
VoidZero
@voidzerodev
The JavaScript Tooling Company. We are the maintainers of @vite_js, @vitest_dev, @rolldown_rs and @oxcproject
undefined
voidzero.dev
Joined August 2023
57
Following
22K
Followers
  • Pinned
    user avatar
    VoidZero
    @voidzerodev
    Jun 4
    VoidZero is joining Cloudflare. Our mission stays the same: to make JavaScript developers more productive than ever before. Vite, Vitest, Rolldown, Oxc, and Vite+ remain MIT-licensed. Evan and the VoidZero team will continue leading them. Cloudflare shares our commitment to
    832K
  • user avatar
    VoidZero
    @voidzerodev
    May 30, 2025
    Today we are excited to announce Rolldown-Vite: a technical preview of the version of Vite entirely powered by the Rust stack we built over the past year (Oxc + Rolldown):
    Announcing Rolldown-Vite
    From voidzero.dev
    125K
  • user avatar
    VoidZero
    @voidzerodev
    Jun 10, 2025
    We're thrilled to announce the first stable release of Oxlint - version 1.0! Our Rust-powered JavaScript/TypeScript linter delivers 50~100x faster performance than ESLint with 500+ rules and zero configuration required. Time to give it a try!
    Announcing Oxlint 1.0
    From voidzero.dev
    107K
  • user avatar
    VoidZero
    @voidzerodev
    Oct 1, 2024
    Hello world! We are on a mission to build a next-generation toolchain for JavaScript that is unified, high-performance, composable, and runtime-agnostic. We are excited to announce our $4.6m seed funding led by @Accel - read more in the blog post:
    Announcing VoidZero - Next Generation Toolchain for JavaScript
    From voidzero.dev
    206K
  • user avatar
    VoidZero
    @voidzerodev
    Oct 22, 2025
    โœ…Announcing Vitest 4.0 โœ… Our latest Vitest update brings Browser Mode to stable, allowing you to test your UI in real browsers like Chrome. Also new: - Visual Regression Testing to catch unintended UI changes - Playwright Trace support for easier debugging
    Announcing Vitest 4.0
    From voidzero.dev
    57K
  • user avatar
    VoidZero
    @voidzerodev
    Apr 3, 2025
    We are excited to announce that we are partnering with @nuxtlabs to have @antfu7 work on Vite Devtools!
    VoidZero and NuxtLabs join forces on Vite Devtools
    From voidzero.dev
    103K
  • user avatar
    VoidZero
    @voidzerodev
    Oct 30, 2025
    We raised a $12.5M Series A round, led by Accel. In this next stage, VoidZero is accelerating development on both our open-source projects and Vite+, the unified JavaScript toolchain. This is only the beginning!
    VoidZero Raises $12.5M Series A
    From voidzero.dev
    235K
  • user avatar
    VoidZero
    @voidzerodev
    Oct 29, 2025
    In the latest version of @rolldown_rs, JSON imports are tree-shaken! No more superfluous JSON values in your bundle, only these that you actually access. Without any change of code or config โœจ Interested in the code? Then check out the PR! github.com/rolldown/rolldโ€ฆ
    First column - title "input".

A config.json file with content:

{
  "apiUrl": "https://api.example.com/",
  "timeout": 5000,
  "retries": 3,
  "debug": false
}

Then an index.js file with the content:

import config from './config.json';
console.log(config.apiUrl);

Under it the text "Import JSON as usual".

Second column - "before". An index.js file that is bundled, with content:

//#region config.json
var apiUrl = "https://api.example.com/";
var timeout = 5e3;
var retries = 3;
var debug = false;
var config_default = {
	apiUrl,
	timeout,
	retries,
	debug
};

//#endregion
//#region index.js
console.log(config_default.apiUrl);

//#endregion

Under it the text "The whole JSON is bundled".

Third column - title "after". An index.js file (output) that is bundled, with the following content:

//#region config.json
var apiUrl = "https://api.example.com/";

//#endregion
//#region index.js
console.log(apiUrl);

//#endregion

Under it the text "Only necessary JSON values are included".
    31K
  • user avatar
    VoidZero
    @voidzerodev
    Oct 13, 2025
    The Unified Toolchain for the Web We are thrilled to announce Vite+: A unified, Rust-powered toolchain and drop-in upgrade for @vite_js. Read the full vision in our announcement post!
    Announcing Vite+
    From voidzero.dev
    77K
  • user avatar
    VoidZero
    @voidzerodev
    Apr 27, 2025
    Don't miss what happened in the last weeks around VoidZero - tsdown is now part of VoidZero - Vite Devtools Sneak Peek - oxc-minify in Rolldown - rolldown-vite improvements - ViteConf Speaker Overview - Goxc and Godown More in this thread ๐Ÿ‘‡
    58K

New to X?

Sign up now to get your own personalized timeline!

Create account

By signing up, you agree to the Terms of Service and Privacy Policy, including Cookie Use.

Terms of Service|Privacy Policy|Cookie Policy|Accessibility|Ads info|ยฉ 2026 X Corp.
Don't miss what's happening
People on X are the first to know.
Log inSign up
✕

Wait! Don't Go Yet 🚀

Get our FREE eBook "10 Programming Tips That Changed Everything" when you subscribe!

No spam. Unsubscribe anytime.