Node.js - jsonfile
Last updated
Was this helpful?
Last updated
Was this helpful?
Easily read/write JSON files.
Writing JSON.stringify()
and then fs.writeFile()
and JSON.parse()
with fs.readFile()
enclosed in try/catch
blocks became annoying.
options
(object
, default undefined
): Pass in any fs.readFile
options or set reviver
for a .
throws
(boolean
, default: true
). If JSON.parse
throws an error, pass this error to the callback. If false
, returns null
for the object.
throws
(boolean
, default: true
). If an error is encountered reading or parsing the file, throw the error. If false
, returns null
for the object.
formatting with spaces:
overriding EOL:
appending to an existing JSON file:
You can use fs.writeFile
option {flag: 'a'}
to achieve this.
formatting with spaces:
overriding EOL:
appending to an existing JSON file:
You can use fs.writeFileSync
option {flag: 'a'}
to achieve this.
(MIT License)
options
(object
, default undefined
): Pass in any fs.readFileSync
options or set reviver
for a .
options
: Pass in any fs.writeFile
options or set replacer
for a . Can also pass in spaces
and override EOL
string.
options
: Pass in any fs.writeFileSync
options or set replacer
for a . Can also pass in spaces
and override EOL
string.
Copyright 2012-2016, JP Richardson