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

x/simple_utility/src/json.deno.ts>jsonRead

Useful snippet collection.
Go to Latest
function jsonRead
import { jsonRead } from "https://deno.land/x/simple_utility@v1.0.0/src/json.deno.ts";

Read JSON file and convert to object.

Examples

Example 1

const object = await jsonRead("./resource.json");

Type Parameters

T extends unknown

Parameters

path: string

Returns

Promise<T>