I would like to ask you if you know a console mode tool to simply create, save, edit and manipulate JSON objects.
I'm looking for those simple functionnalities like (example):
create("Plants")
// outputs // {"_metadata": {"name": "Plants"} }
Plants.add("Cactus", "Watering needs", "once every month")
// {"_metadata": {"name": "Plants"}, "Cactus": { "Watering needs": "once every month"} }
Plants.Cactus["Watering needs"].add("General informations", "About watering", "Watering should be of x liters, and ..")
// {"_metadata": {"name": "Plants"}, "Cactus": { "Watering needs": {"Watering needs": "once every month", "General Informations": {"About watering":"Watering could be done with X instrument..."} } }
Thank you very much