I'm feeling lost on where to begin with this. I am working with an AngularJS form and I need it to add the data it sends to a json file. I understand that AngularJS is client-side, so my main issue lies in figuring out how to manage the data being sent by the form. The process I envision goes like this:
Angular Form -> Submit via POST method -> ??? -> Data appended to file.json
Is there a specific tool or technology I should utilize to handle a POST request from AngularJS?