A fake Steam Store website built with jQuery and Node.js for learing purpose
In app.js
server.listen(process.env.PORT || 5050);
In pool.js
const mysql = require("mysql");
const pool = mysql.createPool({
host: '127.0.0.1',
user: 'root',
password: '',
database: 'steam',
port: 3306,
connectionLimit: 25
});
module.exports = pool;
npm install
npm start