summaryrefslogtreecommitdiff
path: root/std/http/testdata/simple_server.ts
blob: d53e72dcfcf9fdbf0ca2e6205ff750fc63b732f2 (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
// This is an example of a server that responds with an empty body
import { serve } from "../server.ts";

const addr = "0.0.0.0:4502";
console.log(`Simple server listening on ${addr}`);
for await (const req of serve(addr)) {
  req.respond({});
}