HTML
CSS
Deno
Examples
Do It Yourself
Code
Input
Run
const url = Deno.args[0]; const res = await fetch(url); const body = new Uint8Array(await res.arrayBuffer()); await Deno.stdout.write(body);
Related Chapters
Deno HTTP
Deno Web Server
Related Examples
Deno HTML Web Server Example
Deno HTTP Request Text Example