13 lines
316 B
JavaScript
13 lines
316 B
JavaScript
const mysql = require("mysql2");
|
|
|
|
//Create a pool of connections to allow multiple query happen at the same time
|
|
const pool = mysql.createPool({
|
|
host: "localhost",
|
|
user: "root",
|
|
database: "marketplace",
|
|
//password: "12345678",
|
|
});
|
|
|
|
//Export a promise for promise-based query
|
|
module.exports = pool.promise();
|