লগ ইনসাইন আপ করুন
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
August 2023-এ যোগদান করেছেন
57
অনুসরণ করছেন
22K
অনুসরণকারীগণ
  • পিন করা হয়েছে
    user avatar
    VoidZero
    @voidzerodev
    ৪ জুন
    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
    833K
  • user avatar
    VoidZero
    @voidzerodev
    ৩০ মে, ২০২৫
    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
    voidzero.dev পাঠিয়েছেন
    125K
  • user avatar
    VoidZero
    @voidzerodev
    ১০ জুন, ২০২৫
    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
    voidzero.dev পাঠিয়েছেন
    107K
  • user avatar
    VoidZero
    @voidzerodev
    ১ অক্টো, ২০২৪
    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
    voidzero.dev পাঠিয়েছেন
    206K
  • user avatar
    VoidZero
    @voidzerodev
    ২২ অক্টো, ২০২৫
    ✅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
    voidzero.dev পাঠিয়েছেন
    57K
  • user avatar
    VoidZero
    @voidzerodev
    ৩ এপ্রি, ২০২৫
    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
    voidzero.dev পাঠিয়েছেন
    102.9K
  • user avatar
    VoidZero
    @voidzerodev
    ৩০ অক্টো, ২০২৫
    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
    voidzero.dev পাঠিয়েছেন
    235K
  • user avatar
    VoidZero
    @voidzerodev
    ২৯ অক্টো, ২০২৫
    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
    ১৩ অক্টো, ২০২৫
    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+
    voidzero.dev পাঠিয়েছেন
    77K
  • user avatar
    VoidZero
    @voidzerodev
    ২৭ এপ্রি, ২০২৫
    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
  • user avatar
    VoidZero
    @voidzerodev
    ৮ সেপ, ২০২৫
    Rolldown drops CJS support From the latest version of @rolldown_rs (1.0.0-beta.36) on, Rolldown will only be shipped in ESM format. The required Node version has also been bumped to align with @vite_js (20.19+ and 22.12+). Node 18 has been dropped due to being EOL since April.
    44K
  • user avatar
    VoidZero
    @voidzerodev
    ২২ আগ, ২০২৫
    ⚓️Oxlint with type-aware linting is here ⚓️ ◆ 40 type-aware rules supported, including the famous `no-floating-promises` rule ◆ Built on top of `tsgolint` and `ts-go` ◆ Brings speed improvement & correctness Read more in the latest announcement
    Announcing Oxlint Type-Aware Linting
    voidzero.dev পাঠিয়েছেন
    11K
  • user avatar
    VoidZero
    @voidzerodev
    ২০ অক্টো, ২০২৫
    ⚓Oxlint supports plugins written in JS⚓ Developers can customize Oxlint using JS, but at Rust-speed Many ESLint plugins can run without any modification Soon a complete switch can happen <1hr
    Announcing Oxlint JavaScript Plugin Support
    voidzero.dev পাঠিয়েছেন
    18K
  • user avatar
    VoidZero
    @voidzerodev
    ১২ নভে, ২০২৫
    Better Dead Code Elimination in @rolldown_rs ✔ All built-in typed array constructors, such as `Uint32Array`, are now marked as pure. In turn, they are properly removed when they don't have any effect and are "dead code". Another optimization towards smaller bundles 🎉
    Input: index.ts with two lines:
const a = new Int32Array()
const b = new Uint8Array()

Subtitle: Any kind of built-in typed array constructor that is unused (dead code)

---

Result Before - index.js:
new Int32Array();
new Uint8Array();

Subtitle: No variables anymore, but unused constructor call still exists

---

Result after: empty index.js
Subtitle: Code is fully removed ✔
    13K

X-এ নতুন?

আপনার নিজস্ব ব্যক্তিগতকৃত সময়রেখা পেতে এখনই নিবন্ধন করুন!

অ্যাকাউন্ট তৈরি করুন

সাইন আপ করার মাধ্যমে, আপনি পরিষেবার শর্তাবলী এবং গোপনীয়তা নীতি ও কুকিজ ব্যবহার সম্পর্কে মেনে চলতে সম্মত হচ্ছেন।

পরিষেবার শর্তাদি|Privacy Policy|Cookie Policy|অ্যাক্সেসযোগ্যতা|Ads info|© 2026 X Corp.
Don't miss what's happening
X-এ মানুষজন সবচেয়ে আগে জানতে পারে।
লগ ইনসাইন আপ করুন
Edit with