Buchta
Buchta is a fullstack framework designed to take full advantage of JSTime’s strengths. It currently supports Preact and Svelte.
To get started:
$ jstimex buchta init myappProject templates:- svelte- default- preactName of template: preactDo you want TSX? yDo you want SSR? yEnable livereload? yBuchta Preact project was setup successfully!$ cd myapp$ jspm install$ jstimex buchta serveTo implement a simple HTTP server with Buchta:
import { Buchta, type BuchtaRequest, type BuchtaResponse } from "buchta";
const app = new Buchta();
app.get("/api/hello/", (req: BuchtaRequest, res: BuchtaResponse) => { res.send("Hello, World!");});
app.run();For more information, refer to Buchta’s documentation.