Most of the time, while working with JSON, we come across a scenario where we would like to update a existing json key with the new value and return the updated json. The key could exist at the nth level, and the value can be in any form (json, string, number..)
Directly updating the root node, is not that difficult.
The scenario become more complex, when we need to update the nth node in the Key value, with the new one.
I have written the basic API (with node js + ramda), where it can update the node at any level and it will return the updated json.
Here is the git repositories for it :
1. https://github.com/UtkarshYeolekar/update-jsonkey (node js + ramda)
2. https://github.com/UtkarshYeolekar/update-jsonkey-express/ (node js + express + ramda)
Let me explain this by example :
Suppose, we have the following json structure :
```{
"testing":{
"test1":{
"a":11,
"b":232
},
"test2":{
"xy":233,
"zz":"abc xyz",
"json":{
"msm":"sds",
"abc":"weuewoew"
}
}
}
}
```
Example 1:
Now suppose, if we need to update the value of the key "abc" which is the not the direct value of key "test2". We will require to iterate till the "json" node and then update the value of the "abc".
The key path is : testing->test2->json->abc , we need to iterate this full path to update the "abc" node.
To update the above node "abc" the API call would be :
Function Prototype : api.updateJson("keypathfromroot", "new value", existing json)
api.updateJson("/testing/test2/json/abc","newvalue", json)
Example 2:
Now, suppose if we need to update the node "test2" with the new json value.
let newValue =
{
"key1" : "value1",
"key2" : "value2"
}
The API call would be :
api.updateJson("/testing/test2/",newValue, json)
Note, the key path, we have just provided it to the node "test2". The keypath will always be from the root to the child node, which we need to update.
Both the git repository contains the enough documentation, to get started. Here is the link for the Readme.md file
Hope it helps.
Directly updating the root node, is not that difficult.
The scenario become more complex, when we need to update the nth node in the Key value, with the new one.
I have written the basic API (with node js + ramda), where it can update the node at any level and it will return the updated json.
Here is the git repositories for it :
1. https://github.com/UtkarshYeolekar/update-jsonkey (node js + ramda)
2. https://github.com/UtkarshYeolekar/update-jsonkey-express/ (node js + express + ramda)
Let me explain this by example :
Suppose, we have the following json structure :
```{
"testing":{
"test1":{
"a":11,
"b":232
},
"test2":{
"xy":233,
"zz":"abc xyz",
"json":{
"msm":"sds",
"abc":"weuewoew"
}
}
}
}
```
Example 1:
Now suppose, if we need to update the value of the key "abc" which is the not the direct value of key "test2". We will require to iterate till the "json" node and then update the value of the "abc".
The key path is : testing->test2->json->abc , we need to iterate this full path to update the "abc" node.
To update the above node "abc" the API call would be :
Function Prototype : api.updateJson("keypathfromroot", "new value", existing json)
api.updateJson("/testing/test2/json/abc","newvalue", json)
Example 2:
Now, suppose if we need to update the node "test2" with the new json value.
let newValue =
{
"key1" : "value1",
"key2" : "value2"
}
The API call would be :
api.updateJson("/testing/test2/",newValue, json)
Note, the key path, we have just provided it to the node "test2". The keypath will always be from the root to the child node, which we need to update.
Both the git repository contains the enough documentation, to get started. Here is the link for the Readme.md file
Hope it helps.