Improve example on homepage (#2667)

This commit is contained in:
Ryan Dahl 2019-07-19 14:59:41 -04:00 committed by GitHub
parent 621af21e6e
commit a00d087b39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 8 deletions

View File

@ -113,16 +113,15 @@ href="https://deno.land/x/install/install.ps1">https://deno.land/x/install/insta
<p>Or a more complex one:</p>
<pre><code class="typescript language-typescript">import { serve } from "https://deno.land/std@v0.11/http/server.ts";
async function main() {
const body = new TextEncoder().encode("Hello World\n");
for await (const req of serve(":8000")) {
<pre><code class="typescript language-typescript">import { serve } from "<a href="https://deno.land/std@v0.12/http/server.ts">https://deno.land/std@v0.12/http/server.ts</a>";
const body = new TextEncoder().encode("Hello World\n");
const s = serve(":8000");
window.onload = async () => {
console.log("http://localhost:8000/");
for await (const req of s) {
req.respond({ body });
}
}
main();</code></pre>
};</code></pre>
<h2 id="dig-in">Dig in... <a href="#dig-in">#</a></h2>