Skip to content

Instantly share code, notes, and snippets.

@Adurtxi
Last active August 12, 2021 16:44
Show Gist options
  • Select an option

  • Save Adurtxi/f01d7de905617ae72bde374faef3ffe4 to your computer and use it in GitHub Desktop.

Select an option

Save Adurtxi/f01d7de905617ae72bde374faef3ffe4 to your computer and use it in GitHub Desktop.
NodeJS, Express and MySQL -- db.config.js
'use strict';
const mysql = require('mysql2');
const dbConnection = mysql.createConnection({
host : 'localhost',
user : 'root',
password : '',
database : 'nodejs_mysql'
});
dbConnection.connect((err) => {
if (err) throw err;
console.log('Database Connected!');
});
module.exports = dbConnection;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment