initial commit
This commit is contained in:
19
example/test.ts
Normal file
19
example/test.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
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.statusCode = 200;
|
||||
rep.addHeader("working", "true")
|
||||
return JSON.stringify(
|
||||
{
|
||||
code: Status.Teapot,
|
||||
message: "Hello World!",
|
||||
},
|
||||
null,
|
||||
2,
|
||||
);
|
||||
});
|
||||
httpServer.listen({
|
||||
port: 8080,
|
||||
});
|
Reference in New Issue
Block a user