Created
May 16, 2020 17:24
-
-
Save jesperbjensen/e64875ccc35efbf0a905f11e3e533599 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { serve } from "https://deno.land/std@0.50.0/http/server.ts"; | |
const s = serve({ port: 8000 }); | |
console.log("http://localhost:8000/"); | |
let headers = new Headers(); | |
headers.set("content-type", "text/html"); | |
for await (const req of s) { | |
req.respond({ | |
headers, | |
body: "<h1>Hello</h1>, | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment