UNPKG

dbcopycat

Version:

A JSON Database that saves your Json data in a file and makes it easy for you to perform CRUD operations.

9 lines (7 loc) 206 B
const fs = require('fs'); function writeDataJson(data) { fs.writeFile('./data/db.json', data, function (error) { if (error) console.log(error); }) } module.exports = writeDataJson;