summaryrefslogtreecommitdiff
path: root/cli/tests/045_proxy_client.ts
blob: 3d7003750f494546215f80d5b828fd99289995e5 (plain)
1
2
3
4
5
6
7
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
async function main(): Promise<void> {
  const res = await fetch("http://localhost:4545/std/examples/colors.ts");
  console.log(`Response http: ${await res.text()}`);
}

main();