For my Angular 7 web app project, I'm looking to allow users to complete surveys and submit their responses. Since I don't have a database set up yet, I thought of storing the results in a local json file for now. Unfortunately, I'm facing difficulties trying to append to an existing local file without using Node.js 'fs' module (which doesn't work with Angular 6-7). Is there a workaround for this issue? It's not the ideal solution, but I plan on incorporating server-side and database functionality once the app is up and running.