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.
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.
Modify attributes or update text content before final emission. The compiler evaluation strips the attribute for zero production overhead.
<!-- Source -->
<div class="box"
stew-mod="[class][active]">
</div>
<!-- Result -->
<div class="active"></div> Include development-only code that is disabled in production. Terser evaluates the constant and tree-shakes unreachable branches.
// Source
const __DEV__ = true;
if (__DEV__) {
console.log("Debug Mode");
} Zero servers to manage, scale, or pay for. Code executes instantly with non-existent cold starts.
The safety and autocomplete speed of strict typing on the client, without the heavy bundling config.
Backend routing and worker logic sit on a global network, executing right next to your physical users.
Sticks cleanly to HTML5 and CSS3 markup primitives. Zero hydration layers, zero layout lag.