Saves JSON data to a file
Data to save as JSON
Path to save the JSON file
Configuration options
Promise
const { saveAsJson } = require('./json-save');const data = [{ id: 1, name: 'John' }, { id: 2, name: 'Jane' }];await saveAsJson(data, './output.json', { prettyPrint: true }); Copy
const { saveAsJson } = require('./json-save');const data = [{ id: 1, name: 'John' }, { id: 2, name: 'Jane' }];await saveAsJson(data, './output.json', { prettyPrint: true });
Saves JSON data to a file