read.js 779 B

1234567891011121314151617181920212223242526
  1. 'use strict'
  2. const fs = require('fs')
  3. const parse = require('./parse')
  4. module.exports = read
  5. /**
  6. * Public function `read`.
  7. *
  8. * Returns a promise and asynchronously parses a JSON file read from disk. If
  9. * there are no errors, the promise is resolved with the parsed data. If errors
  10. * occur, the promise is rejected with the first error.
  11. *
  12. * @param path: Path to the JSON file.
  13. *
  14. * @option reviver: Transformation function, invoked depth-first.
  15. *
  16. * @option yieldRate: The number of data items to process per timeslice,
  17. * default is 16384.
  18. *
  19. * @option Promise: The promise constructor to use, defaults to bluebird.
  20. **/
  21. function read (path, options) {
  22. return parse(fs.createReadStream(path, options), { ...options, ndjson: false })
  23. }