JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 19406899
  • Score
    100M100P100Q224379F
  • License MIT

Read and parse a JSON file

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 Build Status

Read and parse a JSON file

Strips UTF-8 BOM, uses graceful-fs, and throws more helpful JSON errors.

Install

$ npm install --save load-json-file

Usage

var loadJsonFile = require('load-json-file');

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

API

loadJsonFile(filepath)

Returns a promise that resolves to the parsed JSON.

loadJsonFile.sync(filepath)

Returns the parsed JSON.

License

MIT © Sindre Sorhus