Pure web. Simplicity. My Way

The Edge-Native Stack for Raw Web Standards

A purpose-built starter template for devs who want basic HTML and CSS backed by type-safe JS. No complicated abstractions. No tooling bloat. Brutally fast execution.

stew-compiler — bash
# Click "Cook a Build" to fire the pipeline...
_
HTML Utility

stew-mod

Modify attributes or update text content before final emission. The compiler evaluation strips the attribute for zero production overhead.

index.html
<!-- Source -->
<div class="box" 
    stew-mod="[class][active]">
</div>

<!-- Result -->
<div class="active"></div>
TS Strategy

__DEV__

Include development-only code that is disabled in production. Terser evaluates the constant and tree-shakes unreachable branches.

script.ts
// Source
const __DEV__ = true;

if (__DEV__) {
    console.log("Debug Mode");
}

Serverless

Zero servers to manage, scale, or pay for. Code executes instantly with non-existent cold starts.

🛡️

TypeScript

The safety and autocomplete speed of strict typing on the client, without the heavy bundling config.

🌐

Edge Native

Backend routing and worker logic sit on a global network, executing right next to your physical users.

💻

Web

Sticks cleanly to HTML5 and CSS3 markup primitives. Zero hydration layers, zero layout lag.