server started on 8000! import { serve } from "https://deno.land/
[email protected]/http/server.ts"; const PORT = Number(Deno.env.get("PORT")) || 8000; const s = serve({ port: PORT }); console.log(`deno http server started on ${PORT}!`); for await (const req of s) { req.respond({ body: "<h1>Hello Deno!</h1> <img src=’logo.gif’/>" }); } server.ts serve関数でasync iterableな要素を返却しているので for await … of構文で処理を記述できる このGIFアニメロゴは日本人の@hashrockさんが 作られたものらしいです. https://hashrock.hatenablog.com/entry/2019/02/04/040505 ロゴの元ネタは,Ryan氏いわく 「夜の雨の中に立って、ソフトウェア開発の闇の戦 いにストイックに立ち向かう様子」を表現したそう