DEV Community

loizenai
loizenai

Posted on

Nodejs Express RestAPI – Upload/Import Excel File to MySQL – using Read-Excel-File & Multer

https://grokonez.com/node-js/nodejs-express-restapi-upload-import-excel-file-to-mysql-using-read-excel-file-multer

Nodejs Express RestAPI – Upload/Import Excel File to MySQL – using Read-Excel-File & Multer

In the tutorial, Grokonez shows how to upload & import Excel File/Data to MySQL using read-excel-file and multer libs.

Related post:

Technologies

  • Nodejs
  • Express
  • Multer
  • Read-Excel-File
  • MySQL

Goal

We create a Node.js project as below structure:

nodejs-express-restapi-upload-import-excel-xlsx-file-to-mysql---project-structure

Excel File ->

nodejs-express-restapi-upload-import-excel-xlsx-file-to-mysql---excel-file

-> Results:

nodejs-express-restapi-upload-import-excel-xlsx-file-to-mysql---mysql-records

nodejs-express-restapi-upload-import-excel-xlsx-file-to-mysql---upload-client

Practice

Install Express, Read-Excel-File, Multer, MySQL

– Init package.json file by cmd: npm init -> Then install express, mysql, read-excel-file & multer libs:


$npm install --save express, mysql, read-excel-file, multer

More at:

https://grokonez.com/node-js/nodejs-express-restapi-upload-import-excel-file-to-mysql-using-read-excel-file-multer

Nodejs Express RestAPI – Upload/Import Excel File to MySQL – using Read-Excel-File & Multer

Top comments (0)