Answers for "create json file using node.js"

1

write json file in node js

function writeJsonFile(file, content) {
  let jsonData = JSON.stringify(content)
  fs.writeFileSync(file, jsonData)
}
Posted by: Guest on June-07-2021
0

how to use json file in nodejs

D:\NodeJs>node readsync.js
 *START*
Output Content:
 /* content here */
*EXIT*
// Define JSON File
 var fs = require("fs");
 console.log("\n *STARTING* \n");
// Get content from file
 var
Posted by: Guest on December-05-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language