savaki / jq

A high performance Golang implementation of the incredibly useful jq command line tool.
Apache License 2.0
203 stars 24 forks source link

manipulating the json elements #1

Open suntong opened 7 years ago

suntong commented 7 years ago

Rather than marshalling json elements into go instances, jq opts to manipulate the json elements as raw []byte.

Does that means it would not be too far-fetched to make it a manipulating language as well as querying language? Any possibility selectively update the json elements (according to the query selecting syntax, to pick the elements to be updated)? Thx.