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

42 lines
884 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();
2023-05-11 04:46:41 +00:00
httpServer.add("GET", "/", (req, rep) => {
rep.status(Status.Teapot)
.header("working", "true")
2023-05-11 04:46:41 +00:00
.type("application/json")
.cookie("working", "true");
2023-05-11 04:46:41 +00:00
console.log(req.cookie("working"));
2023-05-10 12:21:20 +00:00
return JSON.stringify(
{
code: Status.Teapot,
message: "Hello World!",
},
null,
2,
);
});
2023-05-11 04:46:41 +00:00
httpServer.add("GET", "/api/user/:userId", (req, rep) => {
rep.status(Status.Teapot)
.type("application/json");
2023-05-11 05:03:10 +00:00
console.log(req.queryParams);
2023-05-11 04:46:41 +00:00
return JSON.stringify(
{
code: Status.Teapot,
message: `UserID is ${req.pathParams["userId"]}`,
},
null,
2,
);
});
2023-05-10 12:21:20 +00:00
httpServer.listen({
port: 8080,
2023-05-10 12:57:29 +00:00
staticLocalDir: "/static",
staticServePath: "/assets",
2023-05-10 12:21:20 +00:00
});