Asynchronously reads and returns the entire contents of a file as utf8 encoded string. Reading a directory throws an error.
const data = await Deno.readTextFile("hello.txt");
console.log(data);
Requires allow-read
permission.
© 2018–2021 the Deno authors
https://doc.deno.land/deno/stable/~/Deno.readTextFile