Skip to main content
Module

x/fastro/examples/static_file.ts

Fast and simple web application framework for deno
Go to Latest
File
import application from "../server/mod.ts";
const app = application();
app.static("/", "./public");
await app.serve({ port: 8080 });