So I'm developing an app that shows items as lists and you can insert more items onto the page via post. But I'm stuck on one problem. I do not understand how am I suppose to connect the client to the server via JSON files.
The main page reads from a JSON file and displays all the items. That part is fully covered but thereafter I need help.
I am not sure on how I'm suppose to input data in a JSON file (I was able to read the input via Angular but still have to input them into a JSON) and that file is then magically sent to the server were the server reads the input and sends back another JSON file with updated list of items to be displayed on the main page.
How do I approach this ?
For this app I also used JQuery and Node.js