how include Setup Connections and Parser?
var mysql = require('mysql');
var pool = mysql.createPool({
host : 'localhost',
user : 'medb',
password : '123458',
database : 'test',
connectionLimit: 100
});
What would be next ?