Skip to content

Instantly share code, notes, and snippets.

@4ov
Created November 27, 2020 12:21
Show Gist options
  • Save 4ov/69a6f50b866f2bf80277f25b6ddd82fe to your computer and use it in GitHub Desktop.
Save 4ov/69a6f50b866f2bf80277f25b6ddd82fe to your computer and use it in GitHub Desktop.
import { serve } from "https://deno.land/std@0.79.0/http/server.ts";
const s = serve({ port: 8000 });
for await (const req of s) {
req.respond({ body: "4" });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment