Package Exports
- load-json-file
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (load-json-file) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
load-json-file 
Read and parse a JSON file
Strips UTF-8 BOM, uses graceful-fs, and throws more helpful JSON errors.
Install
$ npm install load-json-fileUsage
const loadJsonFile = require('load-json-file');
(async () => {
console.log(await loadJsonFile('foo.json'));
//=> {foo: true}
})();API
loadJsonFile(filePath, options?)
Returns a Promise<unknown> with the parsed JSON.
loadJsonFile.sync(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.
Related
- write-json-file - Stringify and write JSON to a file atomically
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.