今日已更新 316 条资讯 | 累计 25396 条内容
关于我们

Show HN: Meow – The 4th and final JavaScript runtime and toolchain

ccheshirecat 2026年07月02日 11:11 3 次阅读 来源:HackerNews

Yes, I said final. Fight me in the comments. But seriously: there are basically exactly 3 serious JS runtimes in the world. (Now 4... or 1, idk). Why? Because the modern JS ecosystem is a fragmented, bloated nightmare. Node, pnpm, tsc, eslint, prettier, vite. Each spins up its own V8 instance, parses your codebase from scratch, and leaves a graveyard of .json configs in your root directory. meow squishes it all into one cute 82MB binary. It’s a drop-in Node replacement, ultra-fast package manage

Yes, I said final. Fight me in the comments. But seriously: there are basically exactly 3 serious JS runtimes in the world. (Now 4... or 1, idk). Why? Because the modern JS ecosystem is a fragmented, bloated nightmare. Node, pnpm, tsc, eslint, prettier, vite. Each spins up its own V8 instance, parses your codebase from scratch, and leaves a graveyard of .json configs in your root directory. meow squishes it all into one cute 82MB binary. It’s a drop-in Node replacement, ultra-fast package manager, formatter, test runner, linter, checker and bundler. I didn't write a JS engine from scratch, I'm not that depressed. meow uses V8 for stability and gets Node drop-in compat via deno_node (thanks Deno team). The secret sauce: meow parses your codebase exactly once into an Oxc AST in memory. That single graph natively feeds the runtime, linter, formatter, typechecker, and bundler. No redundant allocations. Just the fastest JavaScript tooling available, completely unified. 0-Byte Duplicated node_modules (Without Symlink Hell) pnpm is cool, but its symlinks notoriously break framework resolvers. meow downloads to a global cache once, then projects packages using OS-level copy-on-write (macOS APFS clonefile) or parallel hardlinking (Linux/Windows). You get flat, standard node_modules consuming exactly 0 extra bytes on your SSD. 7ms Warm Installs Offloading SHA-512 cryptographic verification to background OS threads means cold installs take ~250ms, warm installs take 7-15ms. And yes, it does it that fast without skipping verification. It actually runs Next.js & SvelteKit Fast runtimes are a fun parlor trick until they fail to build your app. meow natively boots Next.js 15, Astro, and SvelteKit out of the box with full CommonJS & Node built-in support. Sandboxed npx by default Running npx create-next-app gives a random script full host access. We shouldn't be letting Shai Hulud run around so freely. meow x (our ephemeral runner) is sandboxed by default. Network is denied, writes
本文内容来源于互联网,版权归原作者所有
查看原文