Skip to content

Instantly share code, notes, and snippets.

@jyydev
Last active June 28, 2021 14:10
Show Gist options
  • Save jyydev/7a169f58b42dd1d395fa9b32853817c6 to your computer and use it in GitHub Desktop.
Save jyydev/7a169f58b42dd1d395fa9b32853817c6 to your computer and use it in GitHub Desktop.
fs read local json file
var fs = require('fs');
var folder = 'vs_code';
var file = 'keyboard_shortcuts';
var path = `${folder}/${file}.json`
var jsonFile = fs.readFileSync(path);
rs = JSON.parse(jsonFile);
console.log(rs);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment