I have nodejs/express application that should receive cvs files parse them and store parsed values into mongodb database.
How should I make upload route for that files in express? Should I use streams?
I have nodejs/express application that should receive cvs files parse them and store parsed values into mongodb database.
How should I make upload route for that files in express? Should I use streams?
fast-csv and csv-stream both provide you with a stream that you can pipe data into and get records as they are parsed.