Read and parse a JSON file
npm install load-json-file> Read and parse a JSON file
It also strips UTF-8 BOM.
```
$ npm install load-json-file
`js
import {loadJsonFile} from 'load-json-file';
console.log(await loadJsonFile('foo.json'));
//=> {foo: true}
`
Returns a Promise with the parsed JSON.
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.
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.
- write-json-file - Stringify and write JSON to a file atomically