Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/levo/templates/new-project/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/templates/new-project/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