import json file as json nodejs code example
Example 1: read json file nodejs
const fs = require('fs');
const path = require('path');
let rawdata = fs.readFileSync(path.resolve(__dirname, 'student.json'));
let student = JSON.parse(rawdata);
console.log(student);
Example 2: how to use json file in nodejs
D:\NodeJs>node readsync.js
*START*
Output Content:
*EXIT*
var fs = require("fs");
console.log("\n *STARTING* \n");
var contents = fs.readFileSync("jsoncontent.json");
var jsonContent = JSON.parse(contents);
console.log("User Name:", jsonContent.username);
console.log("Email:", jsonContent.email);
console.log("Password:", jsonContent.password);
log("\n *EXIT* \n");