Hi, I'm looking for a JSON transformation tool - transform from one JSON format to another JSON. I've seen Apache Velocity Templates (Java based) engine.
Are there any other recommendations? Preferably one that can be used from PHP code.
What do you mean by transform from one JSON format to another? JSON itself is a format. Which format do you want to transform it to?
You just need to convert old JSON string to an object, then modify this object then return a new JSON string.
Sandeep Panda
co-founder, Hashnode
Take a look at json2json library. It's written in CoffeeScript and helps reformat JSON. If you need to use it in browser, you will have to convert CoffeeScript files into JS.