j2json
v0.0.1
Published
A formatter to sort the keys of JSON files
Downloads
2
Readme
j2json
A formatter to sort the keys of JSON files
With j2json, you can format the json files according to the alphabetical order of their keys.
Usage
Install with npm
npm i j2json --save
Format the json files
'use strict';
const j2json = require('../index');
j2json({
cwd: '/Users/yaolee/Desktop/unitedstack/j2json/examples',
src: ['./files/'],
dest: './dest/'
},
function(files) {
// handle the files
});
License
j2json is available under the terms of the MIT license.