Server-first rendering
Useful HTML is rendered first; reactive scopes hydrate only where declared.
diff --git a/app/pages/index.wrn b/app/pages/index.wrn index 8de6082c..c7dd59d6 100644 --- a/app/pages/index.wrn +++ b/app/pages/index.wrn @@ -1,15 +1,27 @@ page Home { seo { - title = "Home" + title = "WRNexusJS — Bun-native server-first framework" description = "WRNexusJS is a Bun-native, SSR-first full-stack framework using the .wrn component language." canonical = "https://wrnexusjs.dev/" } view { Skip to content -
WRNexusJS v0.2.15
WRNexusJS is an SSR-first, Bun-native full-stack framework. Build typed pages, APIs, validated forms, realtime rooms, secure sessions, workspaces, and optional mobile experiences with the .wrn component language.
Packages require approved private-registry access. No public installation command is currently available.
WRNexusJS v0.2.15
WRNexusJS is an SSR-first, Bun-native full-stack framework. Build typed pages, APIs, validated forms, realtime rooms, secure sessions, workspaces, and optional mobile experiences with the .wrn component language.
Private developer preview. Request access to the package registry.
page Dashboard {
+ ssr { api tasks GET /api/tasks { return tasks } }
+ view {
+ <main>
+ <h1>Tasks</h1>
+ {#each tasks as task}
+ <article>{task.title}</article>
+ {:empty}
+ <p>Nothing waiting.</p>
+ {/each}
+ </main>
+ }
+}Useful HTML is rendered first; reactive scopes hydrate only where declared.
.wrn componentsPages, layouts, props, state, events, server loops, and directives live in a focused language.
The runtime is Bun. Node compatibility is not claimed.
Database queries and shared validation connect server routes to forms.
CSP, CSRF, sessions, authorization, encryption, and safe output are framework primitives.
Rooms, Redis pub/sub, and multi-app gateways support live and isolated applications.
// app/schemas/contact.ts
import { v } from "@wrnexus/validation";
@@ -26,7 +38,7 @@ export const POST = async (ctx) => {
Production proof
WorkRoot
Public creator/company site and approved WRNexusJS production showcase.
wrnexusjs.dev
This documentation application runs WRNexusJS 0.2.15.
Capability status
Capability Status Details SSR, routing, compiler, APIs Preview Installed in 0.2.15; public support policy pending. Mobile/native Experimental Capacitor compatibility and native generation have platform limitations. Durable queues Experimental Production durability requires an appropriate driver strategy.
Continue exploring
page Dashboard {
+ ssr { api tasks GET /api/tasks { return tasks } }
+ view {
+ <main>
+ <h1>Tasks</h1>
+ {#each tasks as task}
+ <article>{task.title}</article>
+ {:empty}
+ <p>Nothing waiting.</p>
+ {/each}
+ </main>
+ }
+}WRNexusJS v${version}
WRNexusJS is an SSR-first, Bun-native full-stack framework. Build typed pages, APIs, validated forms, realtime rooms, secure sessions, workspaces, and optional mobile experiences with the .wrn component language.
Packages require approved private-registry access. No public installation command is currently available.
WRNexusJS v${version}
WRNexusJS is an SSR-first, Bun-native full-stack framework. Build typed pages, APIs, validated forms, realtime rooms, secure sessions, workspaces, and optional mobile experiences with the .wrn component language.
Packages require approved private-registry access. No public installation command is currently available.
Useful HTML is rendered first; reactive scopes hydrate only where declared.
.wrn componentsPages, layouts, props, state, events, server loops, and directives live in a focused language.
The runtime is Bun. Node compatibility is not claimed.
Database queries and shared validation connect server routes to forms.
CSP, CSRF, sessions, authorization, encryption, and safe output are framework primitives.
Rooms, Redis pub/sub, and multi-app gateways support live and isolated applications.
Public creator/company site and approved WRNexusJS production showcase.
This documentation application runs WRNexusJS ${version}.
| Capability | Status | Details |
|---|---|---|
| SSR, routing, compiler, APIs | Preview | Installed in ${version}; public support policy pending. |
| Mobile/native | Experimental | Capacitor compatibility and native generation have platform limitations. |
| Durable queues | Experimental | Production durability requires an appropriate driver strategy. |