db.js 193 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 const mysql = require('mysql'); const db = mysql.createPool({ host: 'localhost', port: '3307', user: 'root', password: 'yj', database: 'projectdf' }); module.exports = db;