Escreva o arquivo com deno
// async
await Deno.writeTextFile("./file.txt", "hello world");
// sync
Deno.writeTextFileSync("./file.txt", "hello world");
ali ahmed
// async
await Deno.writeTextFile("./file.txt", "hello world");
// sync
Deno.writeTextFileSync("./file.txt", "hello world");
// async
console.log(await Deno.readTextFile("./file.txt"));
// synv
console.log(Deno.readTextFileSync("./file.txt"));