Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/levo/lib/lib.deno_runtime.d.ts>Deno.readTextFileSync

Server side rendering with The Elm Architecture in Deno
Latest
function Deno.readTextFileSync
import { Deno } from "https://deno.land/x/levo@v0.0.27/lib/lib.deno_runtime.d.ts";
const { readTextFileSync } = Deno;

Synchronously reads and returns the entire contents of a file as utf8 encoded string encoded string. Reading a directory returns an empty string.

const data = Deno.readTextFileSync("hello.txt");
console.log(data);

Requires allow-read permission.

Parameters

path: string | URL

Returns

string