Skip to content

Instantly share code, notes, and snippets.

@kkiyama117
Last active March 30, 2021 02:42
Show Gist options
  • Save kkiyama117/d86778c5416429f2163b46c328d982d5 to your computer and use it in GitHub Desktop.
Save kkiyama117/d86778c5416429f2163b46c328d982d5 to your computer and use it in GitHub Desktop.
demo
import { serve } from 'https://deno.land/std/http/server.ts';
const server = serve({ port: 8000 });
for await (const req of server) {
req.respond({ body: 'Hello Deno' });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment