Node js mysql

Node js mysql

npm install mysql

var mysql = require(‘mysql’);

var con = mysql.createConnection({
host: “localhost”,
user: “root”,
password: “”
});

con.connect(function(err) {
if (err) throw err;
console.log(“Connected!”);
});

 

Leave a Reply