Skip to main content
Module

x/fastro/examples/main.ts

Fast and simple web application framework for deno
Go to Latest
File
import { application } from "../server/mod.ts";
await application() .get("/", () => new Response("Hello world")) .serve();
console.log("listening on: http://localhost:8000");