Reputation: 1604
What are some of the best & most efficient JSON to JSON transformation libraries ? I only know about Jolt. Does anybody know about other open source libraries exist on similar lines ?
Upvotes: 3
Views: 1676
Reputation: 1
If you need a JS library for json to json transformation, check out mappingutils
, which I recently wrote. It supports JSONPath syntax for easy mapping. For a more mature alternative, you might also explore jsonata
.
Upvotes: -1
Reputation: 1039
There are a number of libraries for JSON parsing, but there are not many that are for JSON to JSON transformations. https://github.com/joelvh/json2json is one. Are to discern a library without knowing what language you want to code in.
If you are looking for something where you don't need to code, try Data Mutanda.
Upvotes: 0