JSON query and transformation language
npm install test-jsonataJSON query and transformation language



Reference implementation of the JSONata query and transformation language.
* JSONata in 5 minutes
* JSONata language documentation
* Try it out!
- npm install jsonata
In Node.js:
``javascript
var jsonata = require("jsonata");
var data = {
example: [
{value: 4},
{value: 7},
{value: 13}
]
};
var expression = jsonata("$sum(example.value)");
var result = expression.evaluate(data); // returns 24
`
In a browser:
`html``
See the CONTRIBUTING.md for details of how to contribute to this repo.