icecreamliker / j2json

A formatter to sort the keys of JSON files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

A formatter to sort the keys of JSON files

License:MIT License


Languages

Language:JavaScript 100.0%