Skip to main content
Module

x/fastro/example/main.ts

Fast and simple web application framework for deno
Go to Latest
File
import { fastro } from '../server/mod.ts'
const app = fastro()
app.get('/', () => { return new Response("Hello world!")})
await app.serve()