I am trying to learn how to put in a html page a local .csv file using javascript. I am using the Electron framework, and I aim to handle everything locally. What I need to do is:
- Read the CSV file.
- Be able to change the datas (delete rows for exemple)
- Use innerHTML to insert the csv data into a div. My problem is in reading the CSV file. All of the examples I have found I think will only work if there is a web server running, which I prefer to avoid.