peach a19a732be8 commit message | há 2 anos atrás | |
---|---|---|
.. | ||
node_modules | há 2 anos atrás | |
index.js | há 2 anos atrás | |
license | há 2 anos atrás | |
package.json | há 2 anos atrás | |
readme.md | há 2 anos atrás |
Stringify and write JSON to a file atomically
Creates directories for you as needed.
$ npm install write-json-file
const writeJsonFile = require('write-json-file');
writeJsonFile('foo.json', {foo: true}).then(() => {
console.log('done');
});
Returns a Promise
.
Type: Object
Type: string
number
Default: '\t'
Indentation as a string or number of spaces.
Pass in null
for no formatting.
Type: boolean
Default: false
Detect indentation automatically if the file exists.
Type: boolean
function
Default: false
Sort the keys recursively.
Optionally pass in a compare
function.
Type: function
Passed into JSON.stringify
.
Type: number
Default: 0o666
Mode used when writing the file.
MIT © Sindre Sorhus