File size: 312 Bytes
818866f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const mysql = require('mysql2');

const db = mysql.createConnection({
    host: '31.220.97.62',
    user: 'myapi',
    password: '57rfPPY8bsFBasXX',
    database: 'myapi',
    port: 3306
});

db.connect((err) => {
    if (err) throw err;
    console.log('Connected to MySQL Database');
});

module.exports = db;