https://grokonez.com/node-js/node-js-import-excel-file-to-mysql-using-read-excel-file-lib

Node.js Import Excel File to MySQL – using Read-Excel-File lib

In the tutorial, Grokonez shows how to import data from Excel File to MySQL with Node.js using Read-Excel-File lib.

Technologies

  • Node.js
  • MySQL
  • Read-Excel-File lib

Goal

- We create a Node.js project as below structure:

node.js-import-excel-file-to-mysql-using-read-excel-file-lib-project-structure

- Excel File:

node.js-import-excel-file-to-mysql-using-read-excel-file-lib-excel-file

-> Results:

node.js-import-excel-file-to-mysql-using-read-excel-file-lib-mysql-records

Practice

Install MySQL & Read-Excel-File

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

$ npm install mysql 
$ npm install read-excel-file 

-> package.json file:

{
  "name": "nodejs-import-excel-file-to-mysql",
  "version": "1.0.0",
  "description": "Nodejs Import Excel File to MySQL with Read-Excel-File ",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [
    "Nodejs",
    "MySQL",
    "Excel",
    "Read-Excel-File"
  ],
  "author": "grokonez.com",
  "license": "ISC",
  "dependencies": {
    "mysql": "^2.16.0",
    "read-excel-file": "^2.0.7"
  }
}

Import Excel File to MySQL

More at:

https://grokonez.com/node-js/node-js-import-excel-file-to-mysql-using-read-excel-file-lib

Node.js Import Excel File to MySQL – using Read-Excel-File lib

#nodejs #mysql #excel #read-excel-file

Node.js Import Excel File to MySQL - using Read-Excel-File lib » grokonez
2.10 GEEK