mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
10 lines
234 B
TypeScript
10 lines
234 B
TypeScript
import { serveFile } from "../file_server.ts";
|
|
|
|
Deno.serve(
|
|
// deno-lint-ignore no-console
|
|
{ port: 8000, onListen: () => console.log("Server running...") },
|
|
(req) => {
|
|
return serveFile(req, "./testdata/hello.html");
|
|
},
|
|
);
|