Skip to content

Instantly share code, notes, and snippets.

@AzMoo
Created April 19, 2016 00:08
Show Gist options
  • Save AzMoo/a4554b89b28b727bbc7a17a07f584f73 to your computer and use it in GitHub Desktop.
Save AzMoo/a4554b89b28b727bbc7a17a07f584f73 to your computer and use it in GitHub Desktop.
var fs = require('fs');
fs.readFile('notarealfile', 'utf8', function(err, data){
try {
var config = JSON.parse(data);
} catch(e) {
console.log(e);
}
});
// Prints: [SyntaxError: Unexpected token u]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment