Skip to main content
Module

std/examples/curl.ts

Deno standard library
Go to Latest
File
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.const url_ = Deno.args[0];const res = await fetch(url_);await Deno.copy(Deno.stdout, res.body);