Files
smarthome/mean-app/server/db.js
T

13 lines
273 B
JavaScript

var mysql = require('mysql');
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',
password : 'asdf1239',
database : 'smarthome'
});
connection.connect(function(err) {
//if (err) throw err;
});
module.exports = connection;