Gem
Gem is an gemini server based on the idea of
middleware. Similar to oak or
koa
Example
import { GemApplication } from "https://deno.land/x/gem/mod.ts";
const app = new GemApplication();
app.use((ctx) => {
ctx.response.body = "Hello world!";
});
app.listen({ port: 1965, secure: false });