{"library":"relysjs","title":"relysjs","description":"relysjs is a reactive web app server focused on multi-page applications (MPAs). Current stable version is 1.21.76. It integrates Bun, Elysia, ESBuild, rmemo, and ctx-core to provide a simple server route and browser build API. Release cadence is frequent with regular updates. Differentiators include native Bun support, reactive server-side rendering, and a unified server + build pipeline with ESBuild. It simplifies MPA development by combining routing, bundling, and reactivity in a single coherent framework.","language":"javascript","status":"active","last_verified":"Fri May 01","install":{"commands":["npm install relysjs"],"cli":null},"imports":["import relysjs from 'relysjs'","import { Route } from 'relysjs'","import { buildLib } from 'relysjs/server'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import relysjs from 'relysjs';\n\nexport default relysjs({\n  routes: [\n    {\n      path: '/',\n      handler: async () => {\n        return `<html><body><h1>Hello, relysjs!</h1></body></html>`;\n      }\n    }\n  ],\n  build: {\n    entryPoints: ['./client.js'],\n    outdir: './public'\n  }\n});\n\n// Run with: bun run relysjs.config.ts","lang":"typescript","description":"Creates a minimal MPA server with a single route and ESBuild client bundling config.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}