Skip to content

Instantly share code, notes, and snippets.

@kidchenko
Created August 15, 2016 02:41
Show Gist options
  • Save kidchenko/07e3301b07c73444ada9990764bdd43c to your computer and use it in GitHub Desktop.
Save kidchenko/07e3301b07c73444ada9990764bdd43c to your computer and use it in GitHub Desktop.
A small snippet to order a json file
var _ = require('underscore');
var fs = require('fs');
var menu = JSON.parse(fs.readFileSync('file.json', 'utf8'));
menu = _.sortBy(menu, 'nome');
menu = JSON.stringify(menu, null, 4);
fs.writeFile("menu.json", menu);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment