Files
smarthome/mean-app/server/db.js
T
2017-03-29 10:38:27 +02:00

13 lines
271 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;