Skip to content

Instantly share code, notes, and snippets.

@hron84
Created December 20, 2011 01:14
Show Gist options
  • Save hron84/1499741 to your computer and use it in GitHub Desktop.
Save hron84/1499741 to your computer and use it in GitHub Desktop.
JSON prettifier
#!/usr/bin/env node
var util = require('util');
var stdin = process.openStdin();
stdin.setEncoding('utf8');
jsdata = '';
stdin.on('data', function(chunk) { jsdata += chunk });
stdin.on('end', function() {
js = JSON.parse(jsdata);
console.log(util.inspect(js, false, 2, true));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment