33 lines
963 B
TypeScript
33 lines
963 B
TypeScript
import { App, fsRoutes, staticFiles } from "fresh";
|
|
import { define, type State } from "./utils.ts";
|
|
|
|
export const app = new App<State>();
|
|
app.use(staticFiles());
|
|
|
|
// this is the same as the /api/:name route defined via a file. feel free to delete this!
|
|
app.get("/api2/:name", (ctx) => {
|
|
const name = ctx.params.name;
|
|
return new Response(
|
|
`Hello, ${name.charAt(0).toUpperCase() + name.slice(1)}!`,
|
|
);
|
|
});
|
|
|
|
// this can also be defined via a file. feel free to delete this!
|
|
const exampleLoggerMiddleware = define.middleware((ctx) => {
|
|
console.log(`${ctx.req.method} ${ctx.req.url}`);
|
|
return ctx.next();
|
|
});
|
|
app.use(exampleLoggerMiddleware);
|
|
|
|
await fsRoutes(app, {
|
|
dir: "./",
|
|
loadIsland: (path) => import(`./islands/${path}`),
|
|
loadRoute: (path) => import(`./routes/${path}`),
|
|
});
|
|
|
|
if (import.meta.main) {
|
|
await app.listen({
|
|
hostname: Deno.env.get("junkhost") || "127.0.0.1",
|
|
port: parseInt(Deno.env.get("junkport") || "11001"),
|
|
});
|
|
}
|