Skip to content

mainak55512/JSONProcessor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jproc

Jproc is a light-weight simple json array query tool written in JavaScript.

Installation

npm install jproc

or,

npm i jproc

New jproc CLI is now available

🎉New 'jproc' cli released.🎉 Try out new 'jproc' cli tool available in releases.

Check out Jproc-cli-usage section for more details

Sample data.json

[
    {
        "name": "name_1",
        "age": 18,
        "details": {
            "id": "hvnakds2342349",
            "location": "London",
            "company": "xyz",
            "keywords": [
                "test1",
                "test2",
                "test3"
            ]
        }
    },
    {
        "name": "name_2",
        "age": 20,
        "details": {
            "id": "iuefibe8362873287",
            "location": "London",
            "company": "abc",
            "keywords": [
                "test1",
                "test2",
                "test3"
            ]
        }
    },
    {
        "name": "name_3",
        "age": 19,
        "details": {
            "id": "iwhiuvwi766579",
            "location": "New York",
            "company": "xyz",
            "keywords": [
                "test1",
                "test2",
                "test3"
            ]
        }
    },
    {
        "name": "name_4",
        "age": 25,
        "details": {
            "id": "wuwcuwey652362",
            "location": "Iraq",
            "company": "pqr",
            "keywords": [
                "test1",
                "test2",
                "test3"
            ]
        }
    }
]

Example usage:

import Jproc from "jproc";
import fs from "fs";

let data = JSON.parse(fs.readFileSync("./data.json"));


// Initialize Jproc object with json data.
let jObj = new Jproc(data);


//------------------------------------ Example 1 ----------------------------------------

// Optionally you can set which parameters you want in the resultant array form the original json object.
jObj.neededParams(["name", "details.id"]);

// Set query for the jproc object, if no query is set using setQuery() method, then it will return resultant array 
// with the fields specified by neededParams() method. If no parameter or query specified, then it will throw error.
jObj.setQuery("(age >= 20 || (age > 18 && details.company = 'xyz')) && (details.location = 'London' || details.location = 'New York')");

// Finally call exec_query() method to execute the query.
console.log(JSON.stringify(jObj.exec_query()));

/*
 It matches the condition and returns the fields specified in the neededParams() method called before.
 output:
 --------
[
  {
    "name": "name_2",
    "id": "iuefibe8362873287"
  },
  {
    "name": "name_3",
    "id": "iwhiuvwi766579"
  }
]
*/
// ----------------------------------- End of Example 1 -------------------------------------


// -------------------------------------- Example 2 -----------------------------------------

// use clearParams() method to clear the parameters set by the neededParams() method.
jObj.clearParams();

console.log(JSON.stringify(jObj.exec_query()));

/*
 It will match the condition and return all the fields form the json object as we have cleared the parameters set for the jproc object.
 Output:
 -------
 [
  {
    "name": "name_2",
    "age": 20,
    "details": {
      "id": "iuefibe8362873287",
      "location": "London",
      "company": "abc",
      "keywords": [
	"test1",
	"test2",
	"test3"
      ]
    }
  },
  {
    "name": "name_3",
    "age": 19,
    "details": {
      "id": "iwhiuvwi766579",
      "location": "New York",
      "company": "xyz",
      "keywords": [
	"test1",
	"test2",
	"test3"
      ]
    }
  }
]
*/
// ------------------------------- End of Example 2 ---------------------------------


// ------------------------------- Example 3 ----------------------------------------

jObj.neededParams(["name", "details.id", "details.location"]);

// Use clearQuery() method to clear existing query for the jproc object.
jObj.clearQuery();

console.log(JSON.stringify(jObj.exec_query()));

/*
 It doesn't match the condition as we have cleared the query and returns the fields form all the json elements for the array
 that are specified in the neededParams() method before.
Output:
-------
[
  {
    "name": "name_1",
    "id": "hvnakds2342349",
    "location": "London"
  },
  {
    "name": "name_2",
    "id": "iuefibe8362873287",
    "location": "London"
  },
  {
    "name": "name_3",
    "id": "iwhiuvwi766579",
    "location": "New York"
  },
  {
    "name": "name_4",
    "id": "wuwcuwey652362",
    "location": "Iraq"
  }
]
*/
// ------------------------------ End of Example 3 ---------------------------------


// ------------------------------ Example 4 ----------------------------------------

jObj.clearQuery();
jObj.clearParams();

console.log(JSON.stringify(jObj.exec_query()));

/*
This will throw error as we have cleared both parameters and query.
*/
// ------------------------------ End of Example 4 ---------------------------------

Jproc-cli-usage

Jproc cli can read from a file using --file flag

jproc --file="test.json" --query="(age >= 20 || (age > 18 && details.company = 'xyz')) && (details.location = 'London' || details.location = 'New Yo
rk')"

Output:

[
  {
    name: 'name_2',
    age: 20,
    details: {
      id: 'iuefibe8362873287',
      location: 'London',
      company: 'abc',
      keywords: [Array]
    }
  },
  {
    name: 'name_3',
    age: 19,
    details: {
      id: 'iwhiuvwi766579',
      location: 'New York',
      company: 'xyz',
      keywords: [Array]
    }
  }
]

Alternatively, json outputs from other applications can be piped to jproc

stto --json redis | jproc --params="ext","code","file_count" --query="line_count > 200 && file_count < 5"

Output:

[
  { ext: 'markdown', code: 176, file_count: 1 },
  { ext: 'm4', code: 669, file_count: 1 },
  { ext: 'vcxproj.filters', code: 446, file_count: 4 },
  { ext: 'vcxproj', code: 1412, file_count: 4 }
]