/*
To download and install the "mysql" module,
open the Command Terminal and execute the following: npm install mysql
*/
var mysql = require('mysql');
var con = mysql.createConnection({
host: "localhost",
user: "root",
password: "12345"
});
con.connect(function(err) {
if (err) throw err;
console.log("Connected!");
});