I need to read the data from a csv file and need to show the newest line in a Node.js Server. The csv file gets updated from another Program so I would need to have it update when that happens without having to reload the site. I found node-tail from here, would that also work for csv files and how would I do that? I am very new to node.js and couldnt find a proper solution. I already found how I can open and read csv files but from my understanding they wouldnt update properly unless I remake the .js file.
I tried finding other People having the same problem but only found examples using .txt files. As I said I have no prior experience with this language so I do not know where I have to look.