0 lain posted how to prase JSON file with Node JS ? how to prase JSON file with Node JS ? Edit Question haha not possible like just use Rust and Serde - Oct 2 '17 10:59
0 Mitul Dabhi answered Nov 30 '-1 00:00 npm install jsonfile var jsonfile = require("jsonfile") var file ="data.json" jsonfile.readFile(file, function(err, obj) { console.dir(obj) }) Edit Answer