deno.land / std@0.224.0 / http / testdata / file_server_as_library.ts

file_server_as_library.ts
View Documentation
1
2
3
4
5
6
7
8
9
import { serveFile } from "../file_server.ts";
Deno.serve( { port: 8000, onListen: () => console.log("Server running...") }, (req) => { return serveFile(req, "./testdata/hello.html"); },);
std

Version Info

Tagged at
4 months ago