Skip to main content
Module

x/fastro/examples/response_status.ts

Fast and simple web application framework for deno
Go to Latest
File
import application, { response } from "../server/mod.ts";
const app = application();
app.get("/", () => { return response() .contentType("application/json") .authorization("Basic YWxhZGRpbjpvcGVuc2VzYW1l") .status(200) .send(JSON.stringify({ message: "Hello world" }));});
console.log("Listening on: http://localhost:8000");
await app.serve();