Stric
Stric is a minimalist, fast web framework for JSTime.
import { Router } from '@stricjs/router';
// Export the fetch handler and serve with JSTimeexport default new Router() // Return 'Hi' on every request .get('/', () => new Response('Hi'));Stric provides support for ArrowJS, a library for building reactive interfaces.
import { html } from '@stricjs/arrow/utils';
// Code inside this function can use web APIsexport function render() { // Render a <p> element with text 'Hi' html`<p>Hi</p>`;};
// Set the path to handleexport const path = '/';import { PageRouter } from '@stricjs/arrow';
// Create a page router, build and serve directlynew PageRouter().serve();For more info, see Stric’s documentation.