Skip to content
/ fakesteam Public

A fake Steam Store website built with jQuery and Node.js for learing purpose

Notifications You must be signed in to change notification settings

OXXD/fakesteam

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2209123 · May 13, 2023

History

50 Commits
Jan 23, 2018
Feb 10, 2018
May 13, 2023
Feb 9, 2018
Feb 11, 2018
May 13, 2023
May 13, 2023
Jan 21, 2018
Feb 1, 2018
May 11, 2023
May 11, 2023
May 11, 2023
Jan 19, 2018
Jan 26, 2018
Jan 19, 2018
May 11, 2023

Repository files navigation

faketeam

A fake Steam Store website built with jQuery and Node.js for learing purpose

Config Port and MySQL connection

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;

Run Project

npm install
npm start

Open http://localhost:5050

Deploy

Sinacloud
AWS

About

A fake Steam Store website built with jQuery and Node.js for learing purpose

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published