Public
HTTP (deprecated)
version 10
Readme

SSR Framework for val.town

Usage

The router map url paths to component vals.

Component vals must export a React Component as their default export:

export default function() { <h1>Hello World!</h1> }

Optionally, you can define an handler next to your component, allowing you to handle query params or form inputs.

Use the ctx.render function to pass props to your component.

export const handler: Handler = (ctx) => { const url = new URL(ctx.req.url); const params = new URLSearchParams(url.search); return ctx.render({ name: params.get("name") }); }; export default function(props: {name?: string}) { <h1>Hello { name || "World }!</h1> }
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
pomdtr-ssr_router.web.val.run
February 26, 2024