HTML
CSS
PHP
Deno
Examples
Do It Yourself
Blog
Code
Input
Run
const url = 'http://ip-api.com/csv'; // Fetch the data with standard JavaScript fetch() API const res = await fetch(url); // await the result and display the text const body = await res.text(); // Display the fetch data console.log(body);
Related Chapters
Deno HTTP
Deno Web Server
Related Examples
Deno HTML Web Server Example
Deno HTTP Request Example