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.