SMRTR ProgrammingJul 27, 2026Hacker News

Scriptc: Vercel's TypeScript-to-C Compiler

SMRTR summary

scriptc compiles ordinary TypeScript directly into small, fast native binaries — no Node, no V8, no JavaScript engine required. It uses three explicit tiers: static compilation by default, an opt-in dynamic engine (~620KB) for npm dependencies, and hard compile-time rejection for everything else. A hello-world binary is ~320KB and starts in ~4ms, versus Node's ~120MB runtime and ~35ms cold start.

SMRTR provides this summary for quick context. The original article belongs to Hacker News.

Read the original article
SMRTR Programming

Get the next batch of curated stories in your inbox.

This archive is built from SMRTR newsletter stories. Subscribe for hand-picked stories without the extra noise.

Related Stories

Browse Programming
ProgrammingAug 23, 2026

Rust Glancer

Rust-analyzer's memory bloat stems from treating all 6,666 dependencies equally — a tiered, IntelliJ-style backend could fix that.