0.0.1 • Published 7 years ago

j2json v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

j2json

A formatter to sort the keys of JSON files

Build Status Coverage Status

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.