diff --git a/app/pages/404.wrn b/app/pages/404.wrn new file mode 100644 index 00000000..4b72f2b0 --- /dev/null +++ b/app/pages/404.wrn @@ -0,0 +1,16 @@ +page Pagenotfound { + seo { + title = "Page not found" + description = "Find the requested WRNexusJS documentation through search or the documentation index." + canonical = "https://wrnexusjs.dev/404" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
+ +
+ } +} \ No newline at end of file diff --git a/app/pages/access.wrn b/app/pages/access.wrn new file mode 100644 index 00000000..8cee31ff --- /dev/null +++ b/app/pages/access.wrn @@ -0,0 +1,16 @@ +page Access { + seo { + title = "Access" + description = "Request access to the WRNexusJS private developer preview." + canonical = "https://wrnexusjs.dev/access" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Private Developer Preview

Request preview access

WRNexusJS 0.2.15 packages are not available from the public npm registry. Installation requires approval and private registry credentials supplied by WorkRoot. Never paste registry tokens into source control, issue reports, or support messages.

Request process

  1. Contact WorkRoot through the public contact path at workroot.in.
  2. Describe the application, team, expected deployment, and Bun environment.
  3. After approval, follow the registry instructions supplied privately.
  4. Use the canonical scaffold command below only after authentication.
bunx @wrnexus/cli@0.2.15 create my-app

Access approval, response time, licensing terms, and support level remain owner-controlled. This site does not collect access requests directly.

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/architecture.wrn b/app/pages/architecture.wrn index 8881868c..8b7ded7b 100644 --- a/app/pages/architecture.wrn +++ b/app/pages/architecture.wrn @@ -1,18 +1,16 @@ page Architecture { seo { title = "Architecture" - description = "Understand the WRNexusJS SSR, compiler, runtime, and package architecture." + description = "WRNexusJS request lifecycle, compiler, runtime, security, data, realtime, workspace, deployment, and mobile architecture." + canonical = "https://wrnexusjs.dev/architecture" } - view { +
-
- W WRNexusJS - - -
-
Concepts

Architecture

WRNexusJS separates server work, generated markup, and browser behavior so applications stay understandable and efficient.

Request path

Request → Router → Middleware → Page/API → SSR document → Browser runtime

Compiler

The compiler parses .wrn files and lowers state, events, interpolation, loops, conditionals, data bindings, components, and styles into server modules and small declarative browser directives.

Runtime

The server owns routing, data, secrets, sessions, validation, uploads, and rendering. The browser owns reactive scopes, navigation, forms, realtime clients, and native capability dispatch.

Package boundaries

Each package is independently installable. Start with the CLI and core, then add database, security, realtime, native, UI, and operational packages as required.

- +
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Framework architecture · 0.2.15

Architecture

WRNexusJS is Bun-native and SSR-first. File discovery maps pages and API handlers; middleware enriches or short-circuits a request; the compiler turns .wrn declarations into server render functions and small feature runtimes.

Request and build lifecycle

  1. DiscoverPages, APIs, middleware, components, layouts, schemas, rooms
  2. CompileParse .wrn, validate grammar, generate server code
  3. RequestLimits, security, locale, session, middleware
  4. MatchStatic and dynamic file route
  5. RenderSSR data, escaped interpolation, components, metadata
  6. EnhanceOnly required reactive/directive runtimes

Package boundaries

core owns contexts, middleware, sessions and rooms; router discovers routes; compiler parses .wrn; ssr renders documents; csr supplies browser runtimes; dev-server and cli orchestrate development and builds.

Security and data flow

Validation happens at trust boundaries. Session authentication establishes identity; authorization makes resource decisions. CSP, Trusted Types, CSRF, upload checks, WebSocket origins, request limits, and output escaping are layered controls—not substitutes for application policy.

Realtime and scale

Rooms are process-local unless connected through pub/sub. Redis-backed pub/sub distributes events. Queue durability depends on the selected driver and must be evaluated explicitly.

Workspaces and gateways

The gateway can dispatch multiple applications while preserving route, component, asset, config, and session boundaries. Validate host routing and isolation before production.

Build and deployment

wrnexus build . produces dist/server.js and hashed/static assets. Run the server with Bun, apply migrations before traffic, terminate TLS at a trusted edge, and forward only expected proxy headers.

Mobile

Mobile compatibility bridges SSR-safe Capacitor capabilities; native route generation is experimental and is not general web portability. Test each target platform.

Generated files and limits

app/routes.gen.ts, .wrnexus/, and dist/ are generated. The runtime is Bun-only. Preview packages are private. Historical compatibility and long-term support policy are not yet published.

+
} -} +} \ No newline at end of file diff --git a/app/pages/benchmarks.wrn b/app/pages/benchmarks.wrn new file mode 100644 index 00000000..338ab8af --- /dev/null +++ b/app/pages/benchmarks.wrn @@ -0,0 +1,16 @@ +page Benchmarks { + seo { + title = "Benchmarks" + description = "Reproducible WRNexusJS performance evidence and methodology status." + canonical = "https://wrnexusjs.dev/benchmarks" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+

Benchmarks

No publishable benchmark dataset yet

No comparative speed claims are published. A valid baseline must record scripts, commit, Bun/framework versions, hardware, OS, warmup, samples, workload, raw results, median, percentiles, memory, HTML size, browser JavaScript size, and run date.

The roadmap starts with WRNexusJS-only measurements before any maintained equivalent-workload comparison.

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/changelog.wrn b/app/pages/changelog.wrn new file mode 100644 index 00000000..ddd47e88 --- /dev/null +++ b/app/pages/changelog.wrn @@ -0,0 +1,16 @@ +page Changelog { + seo { + title = "Changelog" + description = "WRNexusJS documentation release history and migration notes." + canonical = "https://wrnexusjs.dev/changelog" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+

Changelog

0.2.15 2026-07-12

Documentation application aligned to all 25 installed packages, with generated README and TypeScript declaration references. This portal release establishes truthful private-preview access messaging and expanded framework navigation.

Migration notes

Keep all @wrnexus/* packages on the same release and run the installed CLI update workflow. No older framework release history is present in this repository.

Versioning and support

The packages use semantic-looking versions, but a formal compatibility and old-release support policy has not been approved. Preview consumers should treat minor releases as potentially requiring migration review.

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/examples.wrn b/app/pages/examples.wrn new file mode 100644 index 00000000..23a2f1b8 --- /dev/null +++ b/app/pages/examples.wrn @@ -0,0 +1,16 @@ +page Examples { + seo { + title = "Examples" + description = "WRNexusJS examples and their verification status." + canonical = "https://wrnexusjs.dev/examples" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+

Examples

Examples are tied to installed 0.2.15 package documentation. The focused snippets in guides are source-verified; standalone runnable projects and CI compilation are tracked as remaining work.

Minimal .wrn page

Documented

Database CRUD

Planned fixture

Authentication and protected route

Planned fixture

Permissions

Planned fixture

Forms and validation

Documented

Realtime dashboard

Planned fixture

File upload

Planned fixture

Background queue

Planned fixture

Redis pub/sub

Planned fixture

Workspace gateway

Planned fixture

Deployment

Planned fixture

Experimental mobile mode

Planned fixture
+ +
+ } +} \ No newline at end of file diff --git a/app/pages/getting-started.wrn b/app/pages/getting-started.wrn index 77cd3dab..d6e26fc1 100644 --- a/app/pages/getting-started.wrn +++ b/app/pages/getting-started.wrn @@ -1,31 +1,45 @@ page Gettingstarted { seo { title = "Getting started" - description = "Getting started with WRNexusJS" + description = "Build and run a first WRNexusJS application after receiving private preview access." + canonical = "https://wrnexusjs.dev/getting-started" } - view { +
-
- W WRNexusJS - - -
-
Guide

Getting started

Create a production-ready WRNexusJS application with Bun.

1. Create the project

bunx @wrnexus/cli create my-app
+      
W WRNexusJSPrivate preview · v0.2.15
+ +
Preview guide · v0.2.15

Build a contact inbox

This path creates a server-rendered page, validated API route, middleware, and realtime next step. It requires approved registry access and Bun 1.3.x; this site was verified with Bun 1.3.14.

1. Create the project

bunx @wrnexus/cli@0.2.15 create my-app
 cd my-app
 bun install
-bun run dev

2. Add a page

page Dashboard {
-  state count = 0
-  view {
-    <main>
-      <h1>Dashboard</h1>
-      <button @click="count++">{count}</button>
+bun run dev

2. Know the structure

app/pages/       # file-based .wrn routes
+app/components/  # reusable .wrn components
+app/api/         # TypeScript request handlers
+app/middleware/  # ordered request middleware
+app/schemas/     # shared validation
+app/realtime/    # realtime rooms
+wrnexus.config.ts

3. Add a page

page Contacts {
+  view {
+    <main><h1>Contact inbox</h1>
+      <form data-schema="contact" action="/api/contacts" method="post">
+        <input name="email" type="email" /><span data-error="email"></span>
+        <textarea name="message"></textarea><span data-error="message"></span>
+        <button type="submit">Send</button>
+      </form>
     </main>
-  }
-}

3. Verify and build

wrnexus doctor
-wrnexus test
-wrnexus build

Where things live

  • app/pages contains routes.
  • app/components contains reusable .wrn components.
  • app/api contains server API handlers.
  • app/layouts contains shared shells.
  • app/middleware contains request middleware.
  • wrnexus.config.ts configures security, styles, data, mobile, and deployment.
-
WRNexusJS 0.2.15 · SSR-first · Bun-native · Documentation generated from published package APIs.
+ } +}

4. Validate an API route

import schema from "../schemas/contact";
+import { parseBody } from "@wrnexus/validation";
+export const POST = async (ctx) => {
+  const result = await parseBody(schema, ctx.req);
+  return result.ok ? Response.json({ ok: true }, { status: 201 }) : result.response;
+};

5. Load server data

Use an ssr API binding and a server {#each} block. See Server data for the complete verified pattern.

6. Add middleware

export default async function logger(ctx, next) {
+  console.log(ctx.req.method, ctx.url.pathname);
+  return next();
+}

7. Test and ship

bun run test
+bun run build
+bun dist/server.js

Next: deployment, database, authentication, and workspaces.

+
} -} +} \ No newline at end of file diff --git a/app/pages/guides/api-routes.wrn b/app/pages/guides/api-routes.wrn new file mode 100644 index 00000000..ac100a24 --- /dev/null +++ b/app/pages/guides/api-routes.wrn @@ -0,0 +1,16 @@ +page APIroutes { + seo { + title = "API routes" + description = "Build typed Bun-native HTTP handlers." + canonical = "https://wrnexusjs.dev/guides/api-routes" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

API routes

Export GET, POST, PUT, PATCH, or DELETE from app/api files. Validate request bodies, enforce authentication and authorization, cap request sizes, and return Web Responses.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/authentication.wrn b/app/pages/guides/authentication.wrn new file mode 100644 index 00000000..66c238b8 --- /dev/null +++ b/app/pages/guides/authentication.wrn @@ -0,0 +1,16 @@ +page Authentication { + seo { + title = "Authentication" + description = "Session and identity boundaries." + canonical = "https://wrnexusjs.dev/guides/authentication" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Authentication

Configure session authentication, log users in through supported auth helpers, and read identity from context. Cookie flags, rotation, expiry, and secret storage remain deployment responsibilities.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/authorization.wrn b/app/pages/guides/authorization.wrn new file mode 100644 index 00000000..12cbdcbd --- /dev/null +++ b/app/pages/guides/authorization.wrn @@ -0,0 +1,16 @@ +page Authorization { + seo { + title = "Authorization" + description = "Roles, permissions, policies, and resource checks." + canonical = "https://wrnexusjs.dev/guides/authorization" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Authorization

Authentication identifies; authorization decides. Enforce permissions in server routes and policies, including object ownership. UI hiding is never an authorization boundary.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/configuration-and-profiles.wrn b/app/pages/guides/configuration-and-profiles.wrn new file mode 100644 index 00000000..9c7f17ad --- /dev/null +++ b/app/pages/guides/configuration-and-profiles.wrn @@ -0,0 +1,16 @@ +page Configurationandprofiles { + seo { + title = "Configuration and profiles" + description = "Use typed config and environment-specific profiles." + canonical = "https://wrnexusjs.dev/guides/configuration-and-profiles" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Configuration and profiles

wrnexus.config.ts owns styles, SEO, security, data, mobile, fonts, and profiles. Keep secrets in validated environment variables and review merged production configuration.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/database.wrn b/app/pages/guides/database.wrn new file mode 100644 index 00000000..30ea11f1 --- /dev/null +++ b/app/pages/guides/database.wrn @@ -0,0 +1,16 @@ +page Database { + seo { + title = "Database" + description = "Drivers, models, typed SQL, migrations, and deployment." + canonical = "https://wrnexusjs.dev/guides/database" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Database

Configure SQLite or the installed supported driver, keep queries in named SQL blocks, generate typed functions, and apply migrations before traffic. Back up data and test rollback independently.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/deployment.wrn b/app/pages/guides/deployment.wrn new file mode 100644 index 00000000..4b223e39 --- /dev/null +++ b/app/pages/guides/deployment.wrn @@ -0,0 +1,16 @@ +page Deployment { + seo { + title = "Deployment" + description = "Build and run WRNexusJS with Bun." + canonical = "https://wrnexusjs.dev/guides/deployment" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Deployment

Run bun run build, apply migrations, and start dist/server.js with Bun. Configure TLS, proxy trust, environment validation, health checks, graceful restarts, logs, backups, and restrictive security headers.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/forms-and-validation.wrn b/app/pages/guides/forms-and-validation.wrn new file mode 100644 index 00000000..21d2f4ff --- /dev/null +++ b/app/pages/guides/forms-and-validation.wrn @@ -0,0 +1,16 @@ +page Formsandvalidation { + seo { + title = "Forms and validation" + description = "Share validation between forms and API routes." + canonical = "https://wrnexusjs.dev/guides/forms-and-validation" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Forms and validation

Define a v.object schema, use data-schema on the form, show field errors with data-error, and always call parseBody on the server. refine is server-only.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/i18n-and-themes.wrn b/app/pages/guides/i18n-and-themes.wrn new file mode 100644 index 00000000..ec24d5f9 --- /dev/null +++ b/app/pages/guides/i18n-and-themes.wrn @@ -0,0 +1,16 @@ +page Internationalizationandthemes { + seo { + title = "Internationalization and themes" + description = "Load translations and token-based themes." + canonical = "https://wrnexusjs.dev/guides/i18n-and-themes" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Internationalization and themes

Store locale JSON under app/locales and use translation directives. Themes resolve CSS tokens; ensure contrast, system preference behavior, persistence, and non-color cues.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/middleware.wrn b/app/pages/guides/middleware.wrn new file mode 100644 index 00000000..db947b32 --- /dev/null +++ b/app/pages/guides/middleware.wrn @@ -0,0 +1,16 @@ +page Middleware { + seo { + title = "Middleware" + description = "Order and short-circuit request middleware." + canonical = "https://wrnexusjs.dev/guides/middleware" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Middleware

Middleware receives context and next. Return next() to continue or return a Response to stop. Put request limits and trust-boundary controls before business logic.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/mobile.wrn b/app/pages/guides/mobile.wrn new file mode 100644 index 00000000..6ccceb47 --- /dev/null +++ b/app/pages/guides/mobile.wrn @@ -0,0 +1,16 @@ +page Mobile { + seo { + title = "Mobile" + description = "Understand experimental webview and native modes." + canonical = "https://wrnexusjs.dev/guides/mobile" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Mobile

Mobile capabilities are experimental in this preview. Test Capacitor permissions and lifecycle on each platform; do not assume every .wrn or browser API converts to native.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/observability.wrn b/app/pages/guides/observability.wrn new file mode 100644 index 00000000..49d34b4d --- /dev/null +++ b/app/pages/guides/observability.wrn @@ -0,0 +1,16 @@ +page Observability { + seo { + title = "Observability" + description = "Capture errors and events without leaking private data." + canonical = "https://wrnexusjs.dev/guides/observability" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Observability

Use tracking middleware and sinks with redaction, sampling, stable request identifiers, alert ownership, and retention limits. Never capture registry tokens or session secrets.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/pages-and-components.wrn b/app/pages/guides/pages-and-components.wrn new file mode 100644 index 00000000..4dff433c --- /dev/null +++ b/app/pages/guides/pages-and-components.wrn @@ -0,0 +1,16 @@ +page Pagesandcomponents { + seo { + title = "Pages and components" + description = "Compose .wrn pages, layouts, props, state, and slots." + canonical = "https://wrnexusjs.dev/guides/pages-and-components" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Pages and components

Pages are routable, components are reusable, and layouts provide shared slots. Mount a component with data-component and keep browser state scoped and minimal.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/project-structure.wrn b/app/pages/guides/project-structure.wrn new file mode 100644 index 00000000..f6c61334 --- /dev/null +++ b/app/pages/guides/project-structure.wrn @@ -0,0 +1,16 @@ +page Projectstructure { + seo { + title = "Project structure" + description = "How source, public, generated, and build files are organized." + canonical = "https://wrnexusjs.dev/guides/project-structure" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Project structure

Pages, components, layouts, APIs, middleware, schemas, database files, locales, realtime rooms, and styles live under app. Never edit app/routes.gen.ts, .wrnexus, or dist by hand.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/pubsub.wrn b/app/pages/guides/pubsub.wrn new file mode 100644 index 00000000..b12eac71 --- /dev/null +++ b/app/pages/guides/pubsub.wrn @@ -0,0 +1,16 @@ +page Pubsub { + seo { + title = "Pub/sub" + description = "Scale events with in-process or Redis-backed pub/sub." + canonical = "https://wrnexusjs.dev/guides/pubsub" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Pub/sub

The in-process driver cannot cross processes. Use Redis where instances must share events, define channel ownership, and design for reconnects and duplicate delivery.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/queues.wrn b/app/pages/guides/queues.wrn new file mode 100644 index 00000000..74ab4101 --- /dev/null +++ b/app/pages/guides/queues.wrn @@ -0,0 +1,16 @@ +page Queues { + seo { + title = "Queues" + description = "Run delayed, retried, and repeated jobs." + canonical = "https://wrnexusjs.dev/guides/queues" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Queues

Queue behavior is preview-level. Treat in-process work as non-durable, make handlers idempotent, cap retries, record failures, and choose a production persistence strategy.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/realtime.wrn b/app/pages/guides/realtime.wrn new file mode 100644 index 00000000..b6f67823 --- /dev/null +++ b/app/pages/guides/realtime.wrn @@ -0,0 +1,16 @@ +page Realtime { + seo { + title = "Realtime" + description = "Define rooms and secure WebSocket traffic." + canonical = "https://wrnexusjs.dev/guides/realtime" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Realtime

defineRoom handles connection and messages. Validate message shapes, authorize subscriptions, restrict origins, bound payloads, and use pub/sub to scale across processes.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/routing.wrn b/app/pages/guides/routing.wrn new file mode 100644 index 00000000..d2986ecd --- /dev/null +++ b/app/pages/guides/routing.wrn @@ -0,0 +1,16 @@ +page Routing { + seo { + title = "Routing" + description = "File-based page and API routing." + canonical = "https://wrnexusjs.dev/guides/routing" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Routing

A page filename defines its URL; index maps to the directory root and bracket segments are dynamic parameters. API files under app/api expose HTTP method functions and receive a Context.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/security.wrn b/app/pages/guides/security.wrn new file mode 100644 index 00000000..0e16572f --- /dev/null +++ b/app/pages/guides/security.wrn @@ -0,0 +1,16 @@ +page Applicationsecurity { + seo { + title = "Application security" + description = "Configure layered WRNexusJS security controls." + canonical = "https://wrnexusjs.dev/guides/security" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Application security

Use CSP, CSRF, Trusted Types, session hardening, validation, origin checks, upload restrictions, encryption, request limits, and explicit CORS. See the security policy for reporting.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/server-data.wrn b/app/pages/guides/server-data.wrn new file mode 100644 index 00000000..826bc4e9 --- /dev/null +++ b/app/pages/guides/server-data.wrn @@ -0,0 +1,16 @@ +page Serverdata { + seo { + title = "Server data" + description = "Render API-backed data with SSR bindings." + canonical = "https://wrnexusjs.dev/guides/server-data" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Server data

Use an ssr API binding, return the desired response field, and render it with a server #each block. Values are escaped. Avoid fetching private data through a route that lacks authorization.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/testing.wrn b/app/pages/guides/testing.wrn new file mode 100644 index 00000000..cf237fd7 --- /dev/null +++ b/app/pages/guides/testing.wrn @@ -0,0 +1,16 @@ +page Testing { + seo { + title = "Testing" + description = "Test compiled components, routes, and browser behavior." + canonical = "https://wrnexusjs.dev/guides/testing" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Testing

Use Bun tests and @wrnexus/test helpers. Cover server HTML, API status and validation, authorization failures, reactive behavior, and a production startup smoke test.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/troubleshooting.wrn b/app/pages/guides/troubleshooting.wrn new file mode 100644 index 00000000..39138b45 --- /dev/null +++ b/app/pages/guides/troubleshooting.wrn @@ -0,0 +1,16 @@ +page Troubleshooting { + seo { + title = "Troubleshooting" + description = "Diagnose compiler, routing, build, and runtime failures." + canonical = "https://wrnexusjs.dev/guides/troubleshooting" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Troubleshooting

Confirm Bun and package versions, regenerate docs/routes through supported commands, read the first compiler diagnostic, check file naming, validate config, and reproduce under a production build.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/upgrading.wrn b/app/pages/guides/upgrading.wrn new file mode 100644 index 00000000..dd8bc0e3 --- /dev/null +++ b/app/pages/guides/upgrading.wrn @@ -0,0 +1,16 @@ +page Upgrading { + seo { + title = "Upgrading" + description = "Upgrade aligned WRNexusJS packages safely." + canonical = "https://wrnexusjs.dev/guides/upgrading" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Upgrading

Back up and commit first, then use wrnexus update --latest as documented by the installed CLI. Review migrations and keep every @wrnexus package aligned. Current release: 0.2.15.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/uploads.wrn b/app/pages/guides/uploads.wrn new file mode 100644 index 00000000..edffbfeb --- /dev/null +++ b/app/pages/guides/uploads.wrn @@ -0,0 +1,16 @@ +page Uploads { + seo { + title = "Uploads" + description = "Validated local and S3-compatible file handling." + canonical = "https://wrnexusjs.dev/guides/uploads" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Uploads

Configure named stores, accepted MIME/extensions, and maxBytes. Random keys avoid path traversal. Private files require an authenticated serving route; v1 buffers each file in memory.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/guides/workspaces-and-gateway.wrn b/app/pages/guides/workspaces-and-gateway.wrn new file mode 100644 index 00000000..84dcd152 --- /dev/null +++ b/app/pages/guides/workspaces-and-gateway.wrn @@ -0,0 +1,16 @@ +page Workspacesandgateway { + seo { + title = "Workspaces and gateway" + description = "Host isolated applications behind a gateway." + canonical = "https://wrnexusjs.dev/guides/workspaces-and-gateway" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview guide · 0.2.15

Workspaces and gateway

The workspace gateway dispatches apps by configured boundaries. Test host matching, asset namespaces, cookies, sessions, errors, and cross-app authorization before deployment.

Release scope

This guide describes installed 0.2.15 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/index.wrn b/app/pages/index.wrn index c73f8b55..2339c4b2 100644 --- a/app/pages/index.wrn +++ b/app/pages/index.wrn @@ -1,25 +1,32 @@ page Home { seo { title = "Home" - description = "WRNexusJS documentation: build secure, server-rendered, reactive applications with Bun." + description = "WRNexusJS is a Bun-native, SSR-first full-stack framework using the .wrn component language." + canonical = "https://wrnexusjs.dev/" } - view { +
-
- W WRNexusJS - - -
-
WRNexusJS 0.2.15

Build from the server.
Ship only what matters.

An SSR-first, Bun-native framework with reactive .wrn components, typed data, realtime rooms, mobile capabilities, and production security built in.

app/pages/counter.wrn
page Counter {
-  state count = 0
-  view {
-    <button @click="count++">
-      Count {count}
-    </button>
-  }
-}

SSR by default

Useful HTML reaches the browser immediately. Interactive pages hydrate only the runtime they use.

Secure foundations

CSP, Trusted Types, CSRF, sessions, validation, authorization, encryption, and safe rendering are integrated.

Web to native

Share markup through Capacitor or compile portable pages into Expo and React Native routes.

- +
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Private Developer Preview

WRNexusJS v0.2.15

Build from the server.
Ship only what matters.

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.

+

Why WRNexusJS

Server-first rendering

Useful HTML is rendered first; reactive scopes hydrate only where declared.

.wrn components

Pages, layouts, props, state, events, server loops, and directives live in a focused language.

Bun-native runtime

The runtime is Bun. Node compatibility is not claimed.

Typed data and validation

Database queries and shared validation connect server routes to forms.

Integrated security

CSP, CSRF, sessions, authorization, encryption, and safe output are framework primitives.

Realtime and workspaces

Rooms, Redis pub/sub, and multi-app gateways support live and isolated applications.

+

A small full-stack flow

// app/schemas/contact.ts
+import { v } from "@wrnexus/validation";
+export default v.object({ email: v.string().email(), message: v.string().min(10) });
+
+// app/api/contacts.ts
+import schema from "../schemas/contact";
+import { parseBody } from "@wrnexus/validation";
+export const POST = async (ctx) => {
+  const result = await parseBody(schema, ctx.req);
+  return result.ok ? Response.json({ ok: true }, { status: 201 }) : result.response;
+};
+

Request lifecycle

  1. RequestSecurity headers and request limits
  2. MiddlewareAuthentication, policy, and context
  3. File routePage or API handler
  4. Compiler + SSRSafe HTML and scoped runtime
  5. ResponseHTML, JSON, stream, or realtime upgrade
+

Production proof

WorkRoot

Public creator/company site and approved WRNexusJS production showcase.

wrnexusjs.dev

This documentation application runs WRNexusJS 0.2.15.

View deployment notes and showcase status →

+

Capability status

CapabilityStatusDetails
SSR, routing, compiler, APIsPreviewInstalled in 0.2.15; public support policy pending.
Mobile/nativeExperimentalCapacitor compatibility and native generation have platform limitations.
Durable queuesExperimentalProduction durability requires an appropriate driver strategy.
+

Continue exploring

+
} -} +} \ No newline at end of file diff --git a/app/pages/language.wrn b/app/pages/language.wrn index b1d9a0d8..71905e0d 100644 --- a/app/pages/language.wrn +++ b/app/pages/language.wrn @@ -1,90 +1,21 @@ -page Languageanddirectives { +page Thewrnlanguage { seo { - title = "Language and directives" - description = "Complete WRNexusJS language reference for events, directives, loops, conditionals, data, components, forms, realtime, and native behavior." + title = "The .wrn language" + description = "Reference for WRNexusJS .wrn pages, components, layouts, props, state, directives, forms, security, and errors." + canonical = "https://wrnexusjs.dev/language" } - view { +
-
- W WRNexusJS - - -
-
Complete reference

Language and directives

This page documents the .wrn language and declarative browser features that span multiple packages.

-

File anatomy

A file declares a page or component and can contain metadata, props, state, data, view, style, server functions, APIs, and realtime handlers.

page Dashboard {
-  layout = "default"
-  seo { title = "Dashboard" }
+      
W WRNexusJSPrivate preview · v0.2.15
+ +
Language reference · 0.2.15

The .wrn language

File anatomy

page Account {
+  layout = "public"
+  seo { title = "Account" description = "Manage your account." }
   state count = 0
-  view { <button @click="count++">{count}</button> }
-  style { button { padding: 12px; } }
-}
-

State and interpolation

State is scoped to the nearest generated data-scope. Text expressions update reactively after hydration.

state count = 0
-state user = { name: "Ada" }
-
-view {
-  <p>Count: {count}</p>
-  <p>{user.name}</p>
-}
-

Events

Any DOM event can use @event="statement". The compiler emits data-on-event. The expression receives event and can mutate state.

SyntaxPurpose
@clickPointer or keyboard activation.
@inputRead live field values.
@changeReact to committed field changes.
@submitHandle form submission behavior.
@browser-clickRun only in a browser target.
@mobile-clickRun only in a native/mobile target.
<input @input="name = event.target.value">
-<button @click="count++">Add</button>
-<form @submit="submitted = true">...</form>
-

Reactive data attributes

DirectiveBehavior
data-scopeDeclares reactive state for a subtree.
data-textSynchronizes textContent with an expression.
data-showShows or hides an element by truthiness.
data-forRepeats an element for a client-side list.
data-on-<event>Compiled form of an event binding.
data-componentMounts a server-rendered component.
data-slotFills a named component or layout slot.
data-wrnexus-csrConnects generated client data fetching.
-

Conditional rendering

Server conditionals

Server blocks render only the selected branch into the response.

{#if user.isAdmin}
-  <a href="/admin">Admin</a>
-{:else if user}
-  <p>Welcome {user.name}</p>
-{:else}
-  <a href="/login">Sign in</a>
-{/if}

Client visibility

<section data-show="open">Visible while open is true</section>
-

Loops and lists

Server each block

{#each users as user, i}
-  <p>{i + 1}. {user.name}</p>
-{:empty}
-  <p>No users</p>
-{/each}

Reactive client loop

<li data-for="item, i in items">
-  <span data-text="item.name"></span>
-  <button data-on-click="items = items.filter(x => x !== item)">Remove</button>
-</li>
-

Components, props, and slots

component Card {
-  props { title = "Card" }
-  view {
-    <article><h2>{title}</h2><slot></slot></article>
-  }
-}
-
-<div data-component="card" title="Profile">
-  <p>Card content</p>
-</div>
-

Server and client data

Use named data bindings for SSR data or client hydration. Secrets and database work stay on the server.

data users {
-  ssr GET "/api/users"
-}
-
-view {
-  {#each users as user}<p>{user.name}</p>{/each}
-}
-

Forms and validation

Schema-backed forms validate in the browser and on the server with the same descriptor.

<form data-schema="login" method="post" action="/api/login" data-redirect="/dashboard">
-  <input name="email" type="email">
-  <span data-error="email"></span>
-  <button>Sign in</button>
-  <p data-success="Signed in" hidden></p>
-</form>
-

Internationalization and themes

<h1>{t:home.title}</h1>
-<button data-wire-lang-set="fr">Français</button>
-<button data-wire-theme-toggle>Toggle theme</button>
-<button data-wire-theme-set="dark">Dark</button>
-

Realtime rooms

<div data-room="chat" data-room-user="Ada">
-  <span data-room-status></span>
-  <div data-room-log></div>
-  <template data-room-item="message"><p>%user%: %text%</p></template>
-  <form data-room-send><input name="text" data-room-reset></form>
-</div>
-

Browser and native directives

<button data-native-browser="share" data-native-mobile="share"
-        data-native-options='{"title":"WRNexusJS"}'>Share</button>
-<nav data-native-only="mobile">Mobile navigation</nav>
-<p data-native-only="browser">Browser instructions</p>
-<button data-native-requires="haptics">Haptic action</button>
-

Other framework attributes

AttributePurpose
data-errorField validation error destination.
data-successSuccessful form message.
data-redirectNavigation after form success.
data-room-*Realtime status, templates, sending, and reset behavior.
data-uploaderConfig-driven upload widget.
data-wire-theme-*Theme selection and toggling.
data-wire-lang*Language selection.
data-native-*Cross-platform capability and visibility behavior.
-
WRNexusJS 0.2.15 · SSR-first · Bun-native · Documentation generated from published package APIs.
+ view { <button @click="count++">Count {count}</button> } +}

Pages, components, layouts, props, and state

Pages are routes. Components declare default-valued props and may hold state. Layouts provide shared slots. Mount components with data-component; fill default or named slots with data-slot.

Interpolation, conditionals, and loops

Interpolation is HTML-escaped. Use server {#if} and {#each} for SSR data. Use data-show for reactive client visibility.

Events and directives

@click and other events execute in the reactive scope. Data attributes opt into forms, i18n, themes, realtime, uploader, browser, and mobile behavior. Consult the exact package page because availability varies.

Forms, i18n, themes, and realtime

form[data-schema] connects descriptors to client and server validation. Translation keys use {t:key}. Theme toggles use data-wire-theme-toggle. Realtime pages opt into a named room.

Escaping and security

Text interpolation is escaped by default. Do not construct trusted HTML from user input. Server-only refinements must be repeated at the authoritative mutation boundary.

Common compiler errors

  • Use balanced braces; a literal brace must be escaped.
  • Declare UI in view, not JSX or hooks.
  • Use a valid page, component, or layout declaration matching the file role.
  • Keep server loops tied to available SSR bindings.
  • Check troubleshooting and compiler API for this release.
+
} -} +} \ No newline at end of file diff --git a/app/pages/license.wrn b/app/pages/license.wrn new file mode 100644 index 00000000..1169e277 --- /dev/null +++ b/app/pages/license.wrn @@ -0,0 +1,16 @@ +page License { + seo { + title = "License" + description = "Current WRNexusJS licensing status and private-preview terms boundary." + canonical = "https://wrnexusjs.dev/license" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+

License

Owner decision required

This documentation repository contains no public license file, and the packages are unavailable from the public npm registry. No open-source license or redistribution right should be inferred.

Approved preview users must follow the private/commercial terms supplied by WorkRoot. Contact WorkRoot before copying, redistributing, or using WRNexusJS in production.

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/releases/0.2.15.wrn b/app/pages/releases/0.2.15.wrn new file mode 100644 index 00000000..296185ea --- /dev/null +++ b/app/pages/releases/0.2.15.wrn @@ -0,0 +1,16 @@ +page Release0215 { + seo { + title = "Release 0.2.15" + description = "WRNexusJS 0.2.15 release notes." + canonical = "https://wrnexusjs.dev/releases/0.2.15" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+

WRNexusJS 0.2.15

Released 2026-07-12 in this documentation repository. Twenty-five installed packages are aligned to this version. See the changelog, upgrade guide, and package references.

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/roadmap.wrn b/app/pages/roadmap.wrn new file mode 100644 index 00000000..bf3dd245 --- /dev/null +++ b/app/pages/roadmap.wrn @@ -0,0 +1,16 @@ +page Roadmap { + seo { + title = "Roadmap" + description = "Current WRNexusJS documentation and framework priorities without promised dates." + canonical = "https://wrnexusjs.dev/roadmap" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+

Roadmap

Roadmap items are direction, not delivery commitments. Dates require explicit owner approval.

Now

  • Private preview onboarding and accurate package references
  • Runnable documentation fixtures and link/accessibility checks
  • License, support, and disclosure owner decisions

Next

  • Durable queue driver guidance
  • Expanded database/auth/realtime examples
  • Versioned release notes and migration fixtures

Later / exploration

  • Historical documentation selector
  • Maintained reproducible benchmarks
  • Broader mobile/native coverage
+ +
+ } +} \ No newline at end of file diff --git a/app/pages/search.wrn b/app/pages/search.wrn new file mode 100644 index 00000000..279bb4af --- /dev/null +++ b/app/pages/search.wrn @@ -0,0 +1,16 @@ +page Search { + seo { + title = "Search" + description = "Search the local WRNexusJS documentation index without third-party tracking." + canonical = "https://wrnexusjs.dev/search" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+

Search documentation

This build-time index is local and sends no query to a third party. Use your browser’s find command to filter this compact index.

Core documentation

Get started · Tutorial · Architecture · .wrn language · Packages · Examples · Roadmap · Changelog · Security · Support · Search

Guides

Project structure · Routing · Pages and components · Server data · API routes · Middleware · Forms and validation · Authentication · Authorization · Application security · Database · Uploads · Realtime · Pub/sub · Queues · Testing · Workspaces and gateway · Deployment · Configuration and profiles · Internationalization and themes · Mobile · Observability · Upgrading · Troubleshooting

Package APIs

@wrnexus/ai · @wrnexus/authz · @wrnexus/compiler · @wrnexus/core · @wrnexus/csr · @wrnexus/db · @wrnexus/dev-server · @wrnexus/encryption · @wrnexus/i18n · @wrnexus/jwt · @wrnexus/mobile · @wrnexus/native · @wrnexus/oauth · @wrnexus/pubsub · @wrnexus/queue · @wrnexus/reactive · @wrnexus/router · @wrnexus/ssr · @wrnexus/styles · @wrnexus/test · @wrnexus/tracking · @wrnexus/ui · @wrnexus/uploader · @wrnexus/validation · @wrnexus/cli

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/security.wrn b/app/pages/security.wrn new file mode 100644 index 00000000..1512d528 --- /dev/null +++ b/app/pages/security.wrn @@ -0,0 +1,16 @@ +page Security { + seo { + title = "Security" + description = "WRNexusJS security defaults, limits, supported release status, and reporting process." + canonical = "https://wrnexusjs.dev/security" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+

Security

WRNexusJS provides primitives for CSP, CSRF, Trusted Types, sessions, validation, authorization, encryption, upload restrictions, request limits, and WebSocket-origin checks. Applications remain responsible for correct configuration, business authorization, secrets, dependencies, data protection, and operations.

Supported releases

Only the current private-preview release 0.2.15 is documented here. A formal old-release support window is not yet published.

Report a vulnerability

Use WorkRoot’s approved private contact path at workroot.in. Do not publish exploit details or secrets. Include affected version, impact, reproduction, and a safe contact method. Response targets, encryption key, bounty, audit, and certification are not currently claimed.

Deployment controls

Use restrictive CSP and permissions policies, HSTS only on HTTPS production origins, MIME sniffing protection, restrictive referrers, explicit CORS, secure cookies, CSRF validation, request limits, and origin checks. See application security.

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/showcase.wrn b/app/pages/showcase.wrn new file mode 100644 index 00000000..c8f05d14 --- /dev/null +++ b/app/pages/showcase.wrn @@ -0,0 +1,16 @@ +page Showcase { + seo { + title = "Showcase" + description = "Approved public WRNexusJS deployments." + canonical = "https://wrnexusjs.dev/showcase" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+

Showcase

Only confirmed public properties are listed; no customer or traffic claims are made.

WorkRoot

Creator/company site demonstrating a public WRNexusJS deployment. Exact deployed version and infrastructure notes await owner confirmation.

WRNexusJS docs

This documentation portal, built and verified against WRNexusJS 0.2.15 on Bun.

Screenshots are intentionally deferred until approved assets and alt text are available.

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/support.wrn b/app/pages/support.wrn new file mode 100644 index 00000000..d4cba304 --- /dev/null +++ b/app/pages/support.wrn @@ -0,0 +1,16 @@ +page Support { + seo { + title = "Support" + description = "Actual WRNexusJS private preview support and contact routes." + canonical = "https://wrnexusjs.dev/support" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+

Support

WRNexusJS has no public Discord, public issue tracker, or guaranteed community support channel listed by this repository. Preview access and support begin through WorkRoot’s public contact path.

Include WRNexusJS version, Bun version, OS, a minimal reproduction, expected and actual behavior, and sanitized logs. Never include registry tokens, credentials, session cookies, or private data.

Support scope, service levels, and commercial terms require owner confirmation.

+ +
+ } +} \ No newline at end of file diff --git a/app/pages/tutorial.wrn b/app/pages/tutorial.wrn new file mode 100644 index 00000000..c3f6ccf2 --- /dev/null +++ b/app/pages/tutorial.wrn @@ -0,0 +1,29 @@ +page Tutorial { + seo { + title = "Tutorial" + description = "Build a secure task application with WRNexusJS preview APIs." + canonical = "https://wrnexusjs.dev/tutorial" + } + view { + +
+
W WRNexusJSPrivate preview · v0.2.15
+
Browse documentation
+
Preview · runnable-project extraction pending

Secure task board

This tutorial connects the installed 0.2.15 APIs into one design. Snippets are limited to declarations and README patterns verified in the installed packages; a CI-compiled standalone fixture remains on the roadmap.

Application shape

A .wrn page renders tasks from an SSR API binding. A shared validation schema protects mutations. Session middleware identifies users, authorization policies gate updates, and a realtime room broadcasts changes.

Schema and create route

import { v, parseBody } from "@wrnexus/validation";
+const task = v.object({ title: v.string().trim().min(3).max(120) });
+export const POST = async (ctx) => {
+  const parsed = await parseBody(task, ctx.req);
+  if (!parsed.ok) return parsed.response;
+  return Response.json({ ok: true, task: parsed.value }, { status: 201 });
+};

Server-rendered list

page Tasks {
+  ssr { api tasks GET /api/tasks { return tasks } }
+  view {
+    <main><h1>Tasks</h1><ul>
+      {#each tasks as task}<li>{task.title}</li>{:empty}<li>No tasks yet.</li>{/each}
+    </ul></main>
+  }
+}

Production checklist

  • Choose SQLite for local development or configure the supported PostgreSQL driver.
  • Run migrations before accepting traffic.
  • Enable session authentication and enforce authorization on every mutation.
  • Validate upload types and sizes; keep private objects behind authenticated routes.
  • Use Redis pub/sub when realtime rooms span processes.
  • Treat the default queue as non-durable until a production driver is selected.

Follow the focused database, authentication, authorization, realtime, and upload guides.

+ +
+ } +} \ No newline at end of file diff --git a/package.json b/package.json index 920d27f2..bc5c4d6c 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "format": "prettier . --write", "format:check": "prettier . --check", "check": "bun run lint && bun run test && bun run format:check", - "docs:generate": "bun run scripts/generate-docs.ts", + "docs:generate": "bun run scripts/generate-docs.ts && bun run scripts/generate-portal.ts", "start": "bun dist/server.js", "production": "bun run build && bun run start" }, diff --git a/scripts/generate-portal.ts b/scripts/generate-portal.ts new file mode 100644 index 00000000..2b95ad63 --- /dev/null +++ b/scripts/generate-portal.ts @@ -0,0 +1,439 @@ +import { mkdirSync, readFileSync, writeFileSync } from "node:fs"; +import { join, resolve } from "node:path"; + +const root = resolve(import.meta.dir, ".."); +const pkg = JSON.parse(readFileSync(join(root, "package.json"), "utf8")); +const version = pkg.wrnexus.version as string; +const pages = join(root, "app", "pages"); +const docs = join(root, "docs"); +const pub = join(root, "public"); +mkdirSync(docs, { recursive: true }); + +const esc = (s: string) => s.replaceAll("{", "{").replaceAll("}", "}"); +const code = (s: string) => + `
${esc(s).replaceAll("<", "<").replaceAll(">", ">")}
`; + +const navigation = [ + ["/getting-started", "Get started"], + ["/tutorial", "Tutorial"], + ["/architecture", "Architecture"], + ["/language", ".wrn language"], + ["/packages", "Packages"], + ["/examples", "Examples"], + ["/roadmap", "Roadmap"], + ["/changelog", "Changelog"], + ["/security", "Security"], + ["/support", "Support"], + ["/search", "Search"], +] as const; + +function shell(title: string, description: string, body: string, section = "Documentation") { + const nav = navigation.map(([href, label]) => `${label}`).join(""); + return `page ${title.replace(/[^A-Za-z0-9]/g, "") || "Guide"} { + seo { + title = "${title.replaceAll('"', "'")}" + description = "${description.replaceAll('"', "'")}" + canonical = "https://wrnexusjs.dev${routeFor(title)}" + } + view { + +
+
W WRNexusJSPrivate preview · v${version}
+
Browse documentation
+
${body}
+ +
+ } +}`; +} + +const slugs: Record = { + Home: "", + Packages: "/packages", + "Getting started": "/getting-started", + Tutorial: "/tutorial", + Architecture: "/architecture", + "The .wrn language": "/language", +}; +function routeFor(title: string) { + return ( + slugs[title] ?? + `/${title + .toLowerCase() + .replace(/[^a-z0-9]+/g, "-") + .replace(/^-|-$/g, "")}` + ); +} +function page(route: string, title: string, description: string, body: string, section?: string) { + const path = route === "/" ? join(pages, "index.wrn") : join(pages, `${route.slice(1)}.wrn`); + mkdirSync(resolve(path, ".."), { recursive: true }); + slugs[title] = route; + writeFileSync(path, shell(title, description, body, section)); +} + +const status = ` Private Developer Preview`; +page( + "/", + "Home", + "WRNexusJS is a Bun-native, SSR-first full-stack framework using the .wrn component language.", + `
${status}

WRNexusJS v${version}

Build from the server.
Ship only what matters.

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.

+

Why WRNexusJS

Server-first rendering

Useful HTML is rendered first; reactive scopes hydrate only where declared.

.wrn components

Pages, layouts, props, state, events, server loops, and directives live in a focused language.

Bun-native runtime

The runtime is Bun. Node compatibility is not claimed.

Typed data and validation

Database queries and shared validation connect server routes to forms.

Integrated security

CSP, CSRF, sessions, authorization, encryption, and safe output are framework primitives.

Realtime and workspaces

Rooms, Redis pub/sub, and multi-app gateways support live and isolated applications.

+

A small full-stack flow

${code(`// app/schemas/contact.ts\nimport { v } from "@wrnexus/validation";\nexport default v.object({ email: v.string().email(), message: v.string().min(10) });\n\n// app/api/contacts.ts\nimport schema from "../schemas/contact";\nimport { parseBody } from "@wrnexus/validation";\nexport const POST = async (ctx) => {\n const result = await parseBody(schema, ctx.req);\n return result.ok ? Response.json({ ok: true }, { status: 201 }) : result.response;\n};`)}
+

Request lifecycle

  1. RequestSecurity headers and request limits
  2. MiddlewareAuthentication, policy, and context
  3. File routePage or API handler
  4. Compiler + SSRSafe HTML and scoped runtime
  5. ResponseHTML, JSON, stream, or realtime upgrade
+

Production proof

WorkRoot

Public creator/company site and approved WRNexusJS production showcase.

wrnexusjs.dev

This documentation application runs WRNexusJS ${version}.

View deployment notes and showcase status →

+

Capability status

CapabilityStatusDetails
SSR, routing, compiler, APIsPreviewInstalled in ${version}; public support policy pending.
Mobile/nativeExperimentalCapacitor compatibility and native generation have platform limitations.
Durable queuesExperimentalProduction durability requires an appropriate driver strategy.
+

Continue exploring

`, + "Framework", +); + +page( + "/access", + "Access", + "Request access to the WRNexusJS private developer preview.", + `
${status}

Request preview access

WRNexusJS ${version} packages are not available from the public npm registry. Installation requires approval and private registry credentials supplied by WorkRoot. Never paste registry tokens into source control, issue reports, or support messages.

Request process

  1. Contact WorkRoot through the public contact path at workroot.in.
  2. Describe the application, team, expected deployment, and Bun environment.
  3. After approval, follow the registry instructions supplied privately.
  4. Use the canonical scaffold command below only after authentication.
${code(`bunx @wrnexus/cli@${version} create my-app`)}

Access approval, response time, licensing terms, and support level remain owner-controlled. This site does not collect access requests directly.

`, + "Status", +); + +page( + "/getting-started", + "Getting started", + "Build and run a first WRNexusJS application after receiving private preview access.", + `
Preview guide · v${version}

Build a contact inbox

This path creates a server-rendered page, validated API route, middleware, and realtime next step. It requires approved registry access and Bun 1.3.x; this site was verified with Bun 1.3.14.

1. Create the project

${code(`bunx @wrnexus/cli@${version} create my-app\ncd my-app\nbun install\nbun run dev`)}

2. Know the structure

${code(`app/pages/ # file-based .wrn routes\napp/components/ # reusable .wrn components\napp/api/ # TypeScript request handlers\napp/middleware/ # ordered request middleware\napp/schemas/ # shared validation\napp/realtime/ # realtime rooms\nwrnexus.config.ts`)}

3. Add a page

${code(`page Contacts {\n view {\n

Contact inbox

\n
\n \n \n \n
\n
\n }\n}`)}

4. Validate an API route

${code(`import schema from "../schemas/contact";\nimport { parseBody } from "@wrnexus/validation";\nexport const POST = async (ctx) => {\n const result = await parseBody(schema, ctx.req);\n return result.ok ? Response.json({ ok: true }, { status: 201 }) : result.response;\n};`)}

5. Load server data

Use an ssr API binding and a server {#each} block. See Server data for the complete verified pattern.

6. Add middleware

${code(`export default async function logger(ctx, next) {\n console.log(ctx.req.method, ctx.url.pathname);\n return next();\n}`)}

7. Test and ship

${code(`bun run test\nbun run build\nbun dist/server.js`)}

Next: deployment, database, authentication, and workspaces.

`, +); + +page( + "/tutorial", + "Tutorial", + "Build a secure task application with WRNexusJS preview APIs.", + `
Preview · runnable-project extraction pending

Secure task board

This tutorial connects the installed ${version} APIs into one design. Snippets are limited to declarations and README patterns verified in the installed packages; a CI-compiled standalone fixture remains on the roadmap.

Application shape

A .wrn page renders tasks from an SSR API binding. A shared validation schema protects mutations. Session middleware identifies users, authorization policies gate updates, and a realtime room broadcasts changes.

Schema and create route

${code(`import { v, parseBody } from "@wrnexus/validation";\nconst task = v.object({ title: v.string().trim().min(3).max(120) });\nexport const POST = async (ctx) => {\n const parsed = await parseBody(task, ctx.req);\n if (!parsed.ok) return parsed.response;\n return Response.json({ ok: true, task: parsed.value }, { status: 201 });\n};`)}

Server-rendered list

${code(`page Tasks {\n ssr { api tasks GET /api/tasks { return tasks } }\n view {\n

Tasks

    \n {#each tasks as task}
  • {task.title}
  • {:empty}
  • No tasks yet.
  • {/each}\n
\n }\n}`)}

Production checklist

Follow the focused database, authentication, authorization, realtime, and upload guides.

`, +); + +page( + "/architecture", + "Architecture", + "WRNexusJS request lifecycle, compiler, runtime, security, data, realtime, workspace, deployment, and mobile architecture.", + `
Framework architecture · ${version}

Architecture

WRNexusJS is Bun-native and SSR-first. File discovery maps pages and API handlers; middleware enriches or short-circuits a request; the compiler turns .wrn declarations into server render functions and small feature runtimes.

Request and build lifecycle

  1. DiscoverPages, APIs, middleware, components, layouts, schemas, rooms
  2. CompileParse .wrn, validate grammar, generate server code
  3. RequestLimits, security, locale, session, middleware
  4. MatchStatic and dynamic file route
  5. RenderSSR data, escaped interpolation, components, metadata
  6. EnhanceOnly required reactive/directive runtimes

Package boundaries

core owns contexts, middleware, sessions and rooms; router discovers routes; compiler parses .wrn; ssr renders documents; csr supplies browser runtimes; dev-server and cli orchestrate development and builds.

Security and data flow

Validation happens at trust boundaries. Session authentication establishes identity; authorization makes resource decisions. CSP, Trusted Types, CSRF, upload checks, WebSocket origins, request limits, and output escaping are layered controls—not substitutes for application policy.

Realtime and scale

Rooms are process-local unless connected through pub/sub. Redis-backed pub/sub distributes events. Queue durability depends on the selected driver and must be evaluated explicitly.

Workspaces and gateways

The gateway can dispatch multiple applications while preserving route, component, asset, config, and session boundaries. Validate host routing and isolation before production.

Build and deployment

wrnexus build . produces dist/server.js and hashed/static assets. Run the server with Bun, apply migrations before traffic, terminate TLS at a trusted edge, and forward only expected proxy headers.

Mobile

Mobile compatibility bridges SSR-safe Capacitor capabilities; native route generation is experimental and is not general web portability. Test each target platform.

Generated files and limits

app/routes.gen.ts, .wrnexus/, and dist/ are generated. The runtime is Bun-only. Preview packages are private. Historical compatibility and long-term support policy are not yet published.

`, +); + +page( + "/language", + "The .wrn language", + "Reference for WRNexusJS .wrn pages, components, layouts, props, state, directives, forms, security, and errors.", + `
Language reference · ${version}

The .wrn language

File anatomy

${code(`page Account {\n layout = "public"\n seo { title = "Account" description = "Manage your account." }\n state count = 0\n view { }\n}`)}

Pages, components, layouts, props, and state

Pages are routes. Components declare default-valued props and may hold state. Layouts provide shared slots. Mount components with data-component; fill default or named slots with data-slot.

Interpolation, conditionals, and loops

Interpolation is HTML-escaped. Use server {#if} and {#each} for SSR data. Use data-show for reactive client visibility.

Events and directives

@click and other events execute in the reactive scope. Data attributes opt into forms, i18n, themes, realtime, uploader, browser, and mobile behavior. Consult the exact package page because availability varies.

Forms, i18n, themes, and realtime

form[data-schema] connects descriptors to client and server validation. Translation keys use {t:key}. Theme toggles use data-wire-theme-toggle. Realtime pages opt into a named room.

Escaping and security

Text interpolation is escaped by default. Do not construct trusted HTML from user input. Server-only refinements must be repeated at the authoritative mutation boundary.

Common compiler errors

`, +); + +const guides: Record = { + "project-structure": [ + "Project structure", + "How source, public, generated, and build files are organized.", + "Pages, components, layouts, APIs, middleware, schemas, database files, locales, realtime rooms, and styles live under app. Never edit app/routes.gen.ts, .wrnexus, or dist by hand.", + ], + routing: [ + "Routing", + "File-based page and API routing.", + "A page filename defines its URL; index maps to the directory root and bracket segments are dynamic parameters. API files under app/api expose HTTP method functions and receive a Context.", + ], + "pages-and-components": [ + "Pages and components", + "Compose .wrn pages, layouts, props, state, and slots.", + "Pages are routable, components are reusable, and layouts provide shared slots. Mount a component with data-component and keep browser state scoped and minimal.", + ], + "server-data": [ + "Server data", + "Render API-backed data with SSR bindings.", + "Use an ssr API binding, return the desired response field, and render it with a server #each block. Values are escaped. Avoid fetching private data through a route that lacks authorization.", + ], + "api-routes": [ + "API routes", + "Build typed Bun-native HTTP handlers.", + "Export GET, POST, PUT, PATCH, or DELETE from app/api files. Validate request bodies, enforce authentication and authorization, cap request sizes, and return Web Responses.", + ], + middleware: [ + "Middleware", + "Order and short-circuit request middleware.", + "Middleware receives context and next. Return next() to continue or return a Response to stop. Put request limits and trust-boundary controls before business logic.", + ], + "forms-and-validation": [ + "Forms and validation", + "Share validation between forms and API routes.", + "Define a v.object schema, use data-schema on the form, show field errors with data-error, and always call parseBody on the server. refine is server-only.", + ], + authentication: [ + "Authentication", + "Session and identity boundaries.", + "Configure session authentication, log users in through supported auth helpers, and read identity from context. Cookie flags, rotation, expiry, and secret storage remain deployment responsibilities.", + ], + authorization: [ + "Authorization", + "Roles, permissions, policies, and resource checks.", + "Authentication identifies; authorization decides. Enforce permissions in server routes and policies, including object ownership. UI hiding is never an authorization boundary.", + ], + security: [ + "Application security", + "Configure layered WRNexusJS security controls.", + "Use CSP, CSRF, Trusted Types, session hardening, validation, origin checks, upload restrictions, encryption, request limits, and explicit CORS. See the security policy for reporting.", + ], + database: [ + "Database", + "Drivers, models, typed SQL, migrations, and deployment.", + "Configure SQLite or the installed supported driver, keep queries in named SQL blocks, generate typed functions, and apply migrations before traffic. Back up data and test rollback independently.", + ], + uploads: [ + "Uploads", + "Validated local and S3-compatible file handling.", + "Configure named stores, accepted MIME/extensions, and maxBytes. Random keys avoid path traversal. Private files require an authenticated serving route; v1 buffers each file in memory.", + ], + realtime: [ + "Realtime", + "Define rooms and secure WebSocket traffic.", + "defineRoom handles connection and messages. Validate message shapes, authorize subscriptions, restrict origins, bound payloads, and use pub/sub to scale across processes.", + ], + pubsub: [ + "Pub/sub", + "Scale events with in-process or Redis-backed pub/sub.", + "The in-process driver cannot cross processes. Use Redis where instances must share events, define channel ownership, and design for reconnects and duplicate delivery.", + ], + queues: [ + "Queues", + "Run delayed, retried, and repeated jobs.", + "Queue behavior is preview-level. Treat in-process work as non-durable, make handlers idempotent, cap retries, record failures, and choose a production persistence strategy.", + ], + testing: [ + "Testing", + "Test compiled components, routes, and browser behavior.", + "Use Bun tests and @wrnexus/test helpers. Cover server HTML, API status and validation, authorization failures, reactive behavior, and a production startup smoke test.", + ], + "workspaces-and-gateway": [ + "Workspaces and gateway", + "Host isolated applications behind a gateway.", + "The workspace gateway dispatches apps by configured boundaries. Test host matching, asset namespaces, cookies, sessions, errors, and cross-app authorization before deployment.", + ], + deployment: [ + "Deployment", + "Build and run WRNexusJS with Bun.", + "Run bun run build, apply migrations, and start dist/server.js with Bun. Configure TLS, proxy trust, environment validation, health checks, graceful restarts, logs, backups, and restrictive security headers.", + ], + "configuration-and-profiles": [ + "Configuration and profiles", + "Use typed config and environment-specific profiles.", + "wrnexus.config.ts owns styles, SEO, security, data, mobile, fonts, and profiles. Keep secrets in validated environment variables and review merged production configuration.", + ], + "i18n-and-themes": [ + "Internationalization and themes", + "Load translations and token-based themes.", + "Store locale JSON under app/locales and use translation directives. Themes resolve CSS tokens; ensure contrast, system preference behavior, persistence, and non-color cues.", + ], + mobile: [ + "Mobile", + "Understand experimental webview and native modes.", + "Mobile capabilities are experimental in this preview. Test Capacitor permissions and lifecycle on each platform; do not assume every .wrn or browser API converts to native.", + ], + observability: [ + "Observability", + "Capture errors and events without leaking private data.", + "Use tracking middleware and sinks with redaction, sampling, stable request identifiers, alert ownership, and retention limits. Never capture registry tokens or session secrets.", + ], + upgrading: [ + "Upgrading", + "Upgrade aligned WRNexusJS packages safely.", + `Back up and commit first, then use wrnexus update --latest as documented by the installed CLI. Review migrations and keep every @wrnexus package aligned. Current release: ${version}.`, + ], + troubleshooting: [ + "Troubleshooting", + "Diagnose compiler, routing, build, and runtime failures.", + "Confirm Bun and package versions, regenerate docs/routes through supported commands, read the first compiler diagnostic, check file naming, validate config, and reproduce under a production build.", + ], +}; +for (const [slug, [title, desc, text]] of Object.entries(guides)) + page( + `/guides/${slug}`, + title, + desc, + `
Preview guide · ${version}

${title}

${text}

Release scope

This guide describes installed ${version} capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

`, + "Guides", + ); + +const examples = [ + "Minimal .wrn page", + "Database CRUD", + "Authentication and protected route", + "Permissions", + "Forms and validation", + "Realtime dashboard", + "File upload", + "Background queue", + "Redis pub/sub", + "Workspace gateway", + "Deployment", + "Experimental mobile mode", +]; +page( + "/examples", + "Examples", + "WRNexusJS examples and their verification status.", + `

Examples

Examples are tied to installed ${version} package documentation. The focused snippets in guides are source-verified; standalone runnable projects and CI compilation are tracked as remaining work.

${examples.map((x, i) => `

${x}

${i === 0 || i === 4 ? "Documented" : "Planned fixture"}
`).join("")}
`, + "Learn", +); +page( + "/showcase", + "Showcase", + "Approved public WRNexusJS deployments.", + `

Showcase

Only confirmed public properties are listed; no customer or traffic claims are made.

WorkRoot

Creator/company site demonstrating a public WRNexusJS deployment. Exact deployed version and infrastructure notes await owner confirmation.

WRNexusJS docs

This documentation portal, built and verified against WRNexusJS ${version} on Bun.

Screenshots are intentionally deferred until approved assets and alt text are available.

`, + "Project", +); +page( + "/benchmarks", + "Benchmarks", + "Reproducible WRNexusJS performance evidence and methodology status.", + `

Benchmarks

No publishable benchmark dataset yet

No comparative speed claims are published. A valid baseline must record scripts, commit, Bun/framework versions, hardware, OS, warmup, samples, workload, raw results, median, percentiles, memory, HTML size, browser JavaScript size, and run date.

The roadmap starts with WRNexusJS-only measurements before any maintained equivalent-workload comparison.

`, + "Project", +); +page( + "/roadmap", + "Roadmap", + "Current WRNexusJS documentation and framework priorities without promised dates.", + `

Roadmap

Roadmap items are direction, not delivery commitments. Dates require explicit owner approval.

Now

  • Private preview onboarding and accurate package references
  • Runnable documentation fixtures and link/accessibility checks
  • License, support, and disclosure owner decisions

Next

  • Durable queue driver guidance
  • Expanded database/auth/realtime examples
  • Versioned release notes and migration fixtures

Later / exploration

  • Historical documentation selector
  • Maintained reproducible benchmarks
  • Broader mobile/native coverage
`, + "Project", +); +page( + "/changelog", + "Changelog", + "WRNexusJS documentation release history and migration notes.", + `

Changelog

${version} 2026-07-12

Documentation application aligned to all 25 installed packages, with generated README and TypeScript declaration references. This portal release establishes truthful private-preview access messaging and expanded framework navigation.

Migration notes

Keep all @wrnexus/* packages on the same release and run the installed CLI update workflow. No older framework release history is present in this repository.

Versioning and support

The packages use semantic-looking versions, but a formal compatibility and old-release support policy has not been approved. Preview consumers should treat minor releases as potentially requiring migration review.

`, + "Project", +); +page( + `/releases/${version}`, + `Release ${version}`, + `WRNexusJS ${version} release notes.`, + `

WRNexusJS ${version}

Released 2026-07-12 in this documentation repository. Twenty-five installed packages are aligned to this version. See the changelog, upgrade guide, and package references.

`, + "Releases", +); +page( + "/security", + "Security", + "WRNexusJS security defaults, limits, supported release status, and reporting process.", + `

Security

WRNexusJS provides primitives for CSP, CSRF, Trusted Types, sessions, validation, authorization, encryption, upload restrictions, request limits, and WebSocket-origin checks. Applications remain responsible for correct configuration, business authorization, secrets, dependencies, data protection, and operations.

Supported releases

Only the current private-preview release ${version} is documented here. A formal old-release support window is not yet published.

Report a vulnerability

Use WorkRoot’s approved private contact path at workroot.in. Do not publish exploit details or secrets. Include affected version, impact, reproduction, and a safe contact method. Response targets, encryption key, bounty, audit, and certification are not currently claimed.

Deployment controls

Use restrictive CSP and permissions policies, HSTS only on HTTPS production origins, MIME sniffing protection, restrictive referrers, explicit CORS, secure cookies, CSRF validation, request limits, and origin checks. See application security.

`, + "Trust", +); +page( + "/support", + "Support", + "Actual WRNexusJS private preview support and contact routes.", + `

Support

WRNexusJS has no public Discord, public issue tracker, or guaranteed community support channel listed by this repository. Preview access and support begin through WorkRoot’s public contact path.

Include WRNexusJS version, Bun version, OS, a minimal reproduction, expected and actual behavior, and sanitized logs. Never include registry tokens, credentials, session cookies, or private data.

Support scope, service levels, and commercial terms require owner confirmation.

`, + "Trust", +); +page( + "/license", + "License", + "Current WRNexusJS licensing status and private-preview terms boundary.", + `

License

Owner decision required

This documentation repository contains no public license file, and the packages are unavailable from the public npm registry. No open-source license or redistribution right should be inferred.

Approved preview users must follow the private/commercial terms supplied by WorkRoot. Contact WorkRoot before copying, redistributing, or using WRNexusJS in production.

`, + "Trust", +); + +page( + "/search", + "Search", + "Search the local WRNexusJS documentation index without third-party tracking.", + `

Search documentation

This build-time index is local and sends no query to a third party. Use your browser’s find command to filter this compact index.

Core documentation

${navigation.map(([href, label]) => `${label}`).join(" · ")}

Guides

${Object.entries( + guides, + ) + .map(([slug, [title]]) => `${title}`) + .join(" · ")}

Package APIs

${Object.keys(pkg.dependencies) + .concat(Object.keys(pkg.devDependencies)) + .filter((name) => name.startsWith("@wrnexus/")) + .map((name) => `${name}`) + .join(" · ")}

`, + "Discovery", +); + +page( + "/404", + "Page not found", + "Find the requested WRNexusJS documentation through search or the documentation index.", + ``, + "Error", +); + +const routes = [ + "/", + "/access", + "/getting-started", + "/tutorial", + "/architecture", + "/language", + "/packages", + ...Object.keys(guides).map((x) => `/guides/${x}`), + "/examples", + "/showcase", + "/benchmarks", + "/roadmap", + "/changelog", + `/releases/${version}`, + "/security", + "/support", + "/license", + "/search", + "/404", +].filter(Boolean); +const packageNames = Object.keys(pkg.dependencies) + .concat(Object.keys(pkg.devDependencies)) + .filter((x) => x.startsWith("@wrnexus/")) + .map((x) => x.split("/")[1]) + .sort(); +const urls = [...new Set([...routes, ...packageNames.map((x) => `/packages/${x}`)])]; +writeFileSync( + join(pub, "robots.txt"), + `User-agent: *\nAllow: /\nSitemap: https://wrnexusjs.dev/sitemap.xml\n`, +); +writeFileSync( + join(pub, "sitemap.xml"), + `\n${urls.map((x) => `https://wrnexusjs.dev${x}`).join("")}\n`, +); +writeFileSync( + join(pub, "docs-index.json"), + JSON.stringify( + { + version, + status: "private-developer-preview", + generatedAt: "2026-07-12", + documents: urls.map((url) => ({ + url, + title: url === "/" ? "WRNexusJS" : url.split("/").pop()!.replaceAll("-", " "), + section: url.startsWith("/guides") + ? "guide" + : url.startsWith("/packages") + ? "package" + : "portal", + version, + stability: url.includes("mobile") || url.includes("queues") ? "experimental" : "preview", + })), + }, + null, + 2, + ), +); +writeFileSync( + join(pub, "llms-full.txt"), + `# WRNexusJS ${version} comprehensive documentation index\n\nStatus: Private Developer Preview. Runtime: Bun. UI language: .wrn.\nThis is the documentation application, not the framework monorepo.\n\n${urls.map((x) => `- https://wrnexusjs.dev${x}`).join("\n")}\n\nFor exact APIs, use installed package README files followed by exported declarations.\n`, +); + +const auditDocs: Record = { + "site-audit.md": `# WRNexusJS site audit\n\nDate: 2026-07-12. Baseline: Bun 1.3.14, framework ${version}.\n\n## Baseline results\n\n- bun install: pass (169 installs / 209 packages, unchanged).\n- docs generation: pass (25 package pages and 5 prior site pages).\n- tests: 6 pass. Check: pass. Production build: pass, 30 routes.\n- Access test with an empty npm config: @wrnexus/cli and @wrnexus/core returned npm E404.\n- Repository: private WorkRoot Git remote; no public LICENSE, SECURITY, or CHANGELOG file found.\n\n## Findings\n\nThe prior generator duplicated package H1s, descriptions, install blocks, and dumped full declarations. It also rewrote hand-authored core pages, used four desktop-only nav links, hid navigation on mobile, branded inconsistently, and presented an unusable public create command. Metadata lacked explicit canonicals and route coverage. No sitemap, robots file, docs index, release/access route, security/support/license policy, showcase evidence notes, benchmarks methodology page, or 404 source existed.\n\n## Audit limitations\n\nBrowser tooling, Lighthouse, axe, screenshots, and an authenticated clean scaffold were unavailable. Scores are therefore not fabricated; post-deploy measurements remain required under docs/audits/.\n`, + "documentation-information-architecture.md": `# Documentation information architecture\n\nGlobal navigation groups Learn, Reference, Guides, Project, and Trust. Canonical discovery begins at the homepage, then /getting-started and /tutorial. Exact APIs live under /packages. Conceptual tasks live under /guides. Status and trust live at /roadmap, /changelog, /security, /support, /license, and /access. Machine discovery uses robots.txt, sitemap.xml, llms.txt, llms-full.txt, and docs-index.json.\n`, + "release-access-status.md": `# Release and access status\n\n## Decision: Mode B — Private Developer Preview\n\nActive version: ${version}, derived from package.json#wrnexus.version. All 25 installed @wrnexus packages resolve to ${version}. On 2026-07-12, npm view using a clean empty user config returned E404 for @wrnexus/cli@${version} and @wrnexus/core@${version}. The repository remote is a private WorkRoot Git service and no public license file exists.\n\nExternal users cannot execute an installation without approved private registry credentials. The truthful CTA is Request preview access. After approval, the canonical command is bunx @wrnexus/cli@${version} create my-app. Tokens must never appear in documentation or source.\n`, + "documentation-coverage-matrix.md": `# Documentation coverage matrix\n\n| Area | Package reference | Concept guide | Runnable fixture | Tests | Stability | Limitation |\n|---|---|---|---|---|---|---|\n${packageNames.map((x) => `| @wrnexus/${x} | /packages/${x} | ${["validation", "authz", "db", "uploader", "pubsub", "queue", "mobile"].includes(x) ? `/guides/${x === "authz" ? "authorization" : x === "validation" ? "forms-and-validation" : x === "uploader" ? "uploads" : x === "queue" ? "queues" : x}` : "Architecture/package guide"} | Planned | Generator coverage | ${["mobile", "native", "queue"].includes(x) ? "Experimental" : "Preview"} | No standalone CI fixture |`).join("\n")}\n`, + "seo-metadata-matrix.md": `# SEO metadata matrix\n\nEvery canonical portal page defines a unique descriptive title, description, and absolute canonical. Package metadata is generated from installed package metadata. Sitemap and robots cover portal, guides, release, and package routes. Structured-data support is not exposed by the installed .wrn SEO grammar and remains a framework/generator gap. Preview routes remain indexable because the documentation is public; private package/source locations are not linked.\n`, + "redirect-map.md": `# Redirect map\n\nNo legacy redirects are currently required: existing /, /getting-started, /architecture, /language, /packages, and /packages/:name remain canonical. If versioned archives are introduced, current unversioned docs should canonicalize to the active release and archived URLs must remain immutable.\n`, + "release-checklist.md": `# Release checklist\n\n- [ ] Confirm all @wrnexus versions align with package.json#wrnexus.version.\n- [ ] Run bun install, docs:generate twice, test, check, build, and production smoke.\n- [ ] Verify clean-registry access status and CTA.\n- [ ] Crawl routes, links, anchors, canonical metadata, sitemap, robots, and AI files.\n- [ ] Run mobile/desktop accessibility and Lighthouse audits.\n- [ ] Confirm license, disclosure contact, support policy, changelog, and showcase approvals.\n- [ ] Verify no tokens, private paths, fake community links, or unsupported claims.\n`, + "post-deploy-checklist.md": `# Post-deploy checklist\n\n1. Fetch representative HTML, robots.txt, sitemap.xml, llms.txt, llms-full.txt, and docs-index.json.\n2. Run Lighthouse mobile under controlled conditions; target performance/accessibility/SEO/best-practices >=95 with no critical accessibility issue.\n3. Run keyboard, screen reader, zoom, reduced-motion, link, anchor, and responsive overflow checks.\n4. Submit sitemap in Google Search Console and Bing Webmaster Tools after domain ownership is verified.\n5. Inspect canonical selection, rich-result eligibility, crawl errors, CSP reports, server logs, and 404s.\n6. Save dated reports under docs/audits/.\n`, +}; +for (const [name, body] of Object.entries(auditDocs)) writeFileSync(join(docs, name), body); +mkdirSync(join(docs, "audits"), { recursive: true }); +writeFileSync( + join(docs, "audits", "2026-07-12-baseline.md"), + `# Baseline audit\n\nAutomated Bun install/docs/test/check/build passed before implementation. Lighthouse, browser accessibility, and screenshots were unavailable; no scores are claimed.\n`, +); +console.log( + `Generated portal pages, ${urls.length} discovery URLs, and audit deliverables for WRNexusJS ${version}.`, +);