0

How can I update my data.json file using only javascript without using node.js

I want to know the procedure to save and update the values of the JSON file named data.json with the help of JavaScript. I don't want to use Node.js.

13th Sep 2024, 10:41 PM
Mohammad Shaan
Mohammad Shaan - avatar
2 Respostas
+ 1
1. Retrieve the json file using fetch 2. Convert the response to a JavaScript object using JSON.parse() 3. Update the JavaScript object 4. Save the object now as a json using JSON.stringify()
14th Sep 2024, 12:37 AM
RuntimeTerror
RuntimeTerror - avatar
0
Thanks for your support.
7th Oct 2024, 5:18 PM
Mohammad Shaan
Mohammad Shaan - avatar