Import and read excel files to NodeJS Express Application
(Source/Credits: https://dev.to/emilmarlo/import-and-read-excel-files-to-nodejs-express-application-12og)
Hi, does anybody know how or where can I search an NPM module that can help me create a Node JS appli...
Hi, does anybody know how or where can I search an NPM module that can help me create a Node JS application with Express server to import and read excel files?
Comments section
panbhatt
•May 1, 2024
Exceljs is the best one.
jbutz
•May 1, 2024
You can search for modules on NPM's site. If you are working with
.xlsx
files the xlsx module may be helpful. If you are working with.csv
files you might want to look into the csv suite.emilmarlo Author
•May 1, 2024
Thanks Jason! I've been viewing both modules for a week but still haven't tried one because I couldn't find a great tutorial about these. Anyway, I'll give it a try. Thanks!
macmacky
•May 1, 2024
Use csv-parser.