Show HN: Meow – The 4th and final JavaScript runtime and toolchain
By
ccheshirecat
9h ago
Source
Hacker NewsShow HN: Meow – The 4th and final JavaScript runtime and toolchainmeow.styleYes, 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 are confined to the cwd, and the clock/entropy are frozen. Pass --trust to let it do sketchy stuff. The UX meow looksmaxxes hard. It looks like a little girl vomited in a TTY. But it intelligently detects non-interactive environments and degrades to clean stdout so you can sneak it into your org without breaking CI/CD. No cap, it benchmaxxes pretty good too. Like if it were an LLM it'd be mythos class for sure. Benchmarks below. Install (macOS / Linux): curl -fsSL
You might also wanna read
Google loses fight over record $4.7 billion EU antitrust fine
cnbc.com·2h ago
Why Big Bets Fail: The Case for Small Learnable Chunks in Reform and Product Development
The article explores how both political reforms and product development fail due to excessive decision risk concentrated in single large bet
kasperjunge.com·3h ago
GitHub - Key-wxh/market-fish: Dont guess. Simulate. Multi-agent market prediction engine.
AI coding assistants make experienced developers feel faster but measurably slower on large codebases
The article argues that AI coding assistants (like GitHub Copilot) make experienced developers feel faster while actually slowing them down
CursorBench 3.1: Benchmarking AI Coding Agents on Real-World Multi-File Tasks
CursorBench is a benchmark developed by Cursor to evaluate AI coding agents on ambiguous, multi-file tasks drawn from real Cursor sessions.
Kimi K2.7 Code, an open-weight AI model, launches in GitHub Copilot
Kimi K2.7 Code, an open-weight AI coding model, is now generally available in GitHub Copilot. It is the first open-weight model offered as a

Comments
Sign in to join the conversation.
No comments yet. Be the first.