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

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