Popularity
3.1
Growing
Activity
1.4
-
238
8
51

Programming language: JavaScript
License: MIT License
Tags: JSON     Filesystem     Parse     Load     File     Fs     Read     Graceful    
Latest version: v6.2.0

load-json-file alternatives and similar modules

Based on the "Filesystem" category.
Alternatively, view load-json-file alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of load-json-file or a related project?

Add another 'Filesystem' Module

README

load-json-file

Read and parse a JSON file

It also strips UTF-8 BOM.

Install

$ npm install load-json-file

Usage

import {loadJsonFile} from 'load-json-file';

console.log(await loadJsonFile('foo.json'));
//=> {foo: true}

API

loadJsonFile(filePath, options?)

Returns a Promise<unknown> with the parsed JSON.

loadJsonFileSync(filepath, options?)

Returns the parsed JSON.

options

Type: object

beforeParse

Type: Function

Applies a function to the JSON string before parsing.

reviver

Type: Function

Prescribes how the value originally produced by parsing is transformed, before being returned. See the JSON.parse docs for more.

load-json-file for enterprise

Available as part of the Tidelift Subscription.

The maintainers of load-json-file and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.

Related