Upload xslx/xls and multiple insert

Good morning! I'm developing a project using node js and I wanted to do the following:
Upload a file in xslx or xls and make a multiple insert into the database with the number of items you want in that file.

I've tried to do this before and I couldn't. Another idea would also be to upload xlsx and convert it to a csv which I know works. Has anyone ever done something like this or similar on node?

You need to develop a custom extension and use one of these libraries to parse XLS/X files: xlsx - npm or node-xlsx - npm

1 Like

Is there a public available custom module that does this?