This repository has been archived on 2023-06-09. You can view files and clone it, but cannot push or open issues or pull requests.
deno-http/example/test.ts

25 lines
558 B
TypeScript
Raw Normal View History

2023-05-10 12:21:20 +00:00
import { Status } from "https://deno.land/std@0.186.0/http/http_status.ts";
import { HTTPServer } from "../http_server.ts";
const httpServer = new HTTPServer();
httpServer.add("GET", "/", (_req, rep) => {
rep.status(Status.Teapot)
.header("working", "true")
.cookie("working", "true");
console.log(_req.cookie("working"));
2023-05-10 12:21:20 +00:00
return JSON.stringify(
{
code: Status.Teapot,
message: "Hello World!",
},
null,
2,
);
});
httpServer.listen({
port: 8080,
2023-05-10 12:57:29 +00:00
staticLocalDir: "/static",
staticServePath: "/assets",
2023-05-10 12:21:20 +00:00
});