0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00
deno/cli/tests/045_proxy_client.ts

8 lines
253 B
TypeScript
Raw Normal View History

2019-09-25 00:52:01 +02:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
async function main(): Promise<void> {
2019-10-22 22:52:41 +09:00
const res = await fetch("http://localhost:4545/std/examples/colors.ts");
2019-09-25 00:52:01 +02:00
console.log(`Response http: ${await res.text()}`);
}
main();