1.2ms Cold Transpile
Transpile TypeScript files cold in 1.2ms. Warm rebuilds in 0.1ms. 780x faster than tsc.
A commodius vicus of recirculation for your JavaScript.

| Tool | Cold | Warm | Peak RSS |
|---|---|---|---|
| howth | 1.2ms | 0.1ms | 8.2MB |
| tsc --noEmit | 975ms | - | 143MB |
| Tool | Median | p95 | Peak RSS |
|---|---|---|---|
| howth | 19ms | 20ms | - |
| bun test | 20ms | 25ms | 56.8MB |
| node --test | 163ms | 189ms | 56.8MB |
howth is 8.7x faster than node and 1.05x faster than bun.
# Install
curl -fsSL https://raw.githubusercontent.com/jschatz1/howth/main/install.sh | sh
# Build your project
howth build
# Watch mode
howth build --watch
# Bundle for production
howth bundle src/index.ts -o dist/bundle.js
# Dev server with HMR
howth dev src/index.ts --port 3000