load-json-file
TypeScript icon, indicating that this package has built-in type declarations

7.0.1 • Public • Published

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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 7.0.1
    284,588
    • latest

Version History

Package Sidebar

Install

npm i load-json-file

Weekly Downloads

19,442,900

Version

7.0.1

License

MIT

Unpacked Size

5.37 kB

Total Files

5

Last publish

Collaborators

  • sindresorhus