Answers for "read file sync nodejs json"

4

node readFileSync json

const fs = require('fs');

let rawdata = fs.readFileSync('student.json');
let student = JSON.parse(rawdata);
console.log(student);
Posted by: Guest on February-25-2021
0

node read file sync

// macOS, Linux, and Windows
fs.readFileSync('<directory>');
// => [Error: EISDIR: illegal operation on a directory, read <directory>]

//  FreeBSD
fs.readFileSync('<directory>'); // => <data>
Posted by: Guest on June-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language