Suraj Menon
Suraj Menon

Reputation: 1604

JSON to JSON transformation libraries

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

Answers (2)

benderx181
benderx181

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

rlasch
rlasch

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

Related Questions