GameSuite is a centralized platform for competitive gamers where players can chat, organize and view in-game statistics from and about various different games.
To install GameSuite, run
$ git clone https://github.com/2lives/GameSuite.git
then inside the GameSuite folder run
$ npm install
to install all npm dependencies.
You will also need to have Meteor installed
- Inside the GameSuite folder, run
$ meteor
to start up the project.
-
Create an account at the top right and refresh the browser.
Create your GameSuiteID and Bio and add some games.
You will need to supply Your own API keys for this program to work!
RiotAPI - https://developer.riotgames.com/
Get Champion List
https://na1.api.riotgames.com/lol/static-data/v3/champions?locale=en_US&champListData=image&champListData=info&dataById=false&api_key=${LeagueAPIKey}
,
GET
-
LeagueAPIkey = Your Riot API key
Get Account Information By Summoner Name
https://na1.api.riotgames.com/lol/summoner/v3/summoners/by-name/${summonerName}?api_key=${LeagueAPIKey}
,
GET
-
summonerName = A summoner name
LeagueAPIkey = Your RIOT API key
Get Champion Mastery
https://na1.api.riotgames.com/lol/champion-mastery/v3/champion-masteries/by-summoner/{summonerId}?api_key=${LeagueAPIKey}
,
GET
-
summonerId = A summoner id
LeagueAPIkey = Your Riot API key
Get Champion Mastery
https://na1.api.riotgames.com/lol/champion-mastery/v3/champion-masteries/by-summoner/{summonerId}?api_key=${LeagueAPIKey}
,
GET
-
summonerId = A summoner id
LeagueAPIkey = Your Riot Developer API key
SteamAPI - https://steamcommunity.com/dev/apikey
Get Steam Account Summary
-
http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=${SteamAPIkey}&steamids=${steamId}
,
GET
-
steamId = A Steam Account ID
SteamAPIkey = Your Steam API key
Get Account Information By Summoner Name
http://api.steampowered.com/ISteamUserStats/GetUserStatsForGame/v0002/?appid=730&key=${SteamAPIkey}&steamid=${steamId}
,
GET
-
steamId = A Steam Account ID
SteamAPIkey = Your Steam API key
Fortnite Tracker API - https://fortnitetracker.com/site-api
Get Fortnite Account Data
-
https://api.fortnitetracker.com/v1/profile/pc/${accountName}
, -
headers: { 'TRN-Api-Key': '{FortniteAPIKey}' }
GET
-
accountName = A PC Fortnite Account Name
FortniteAPIKey = Your Fortnite Tracker API key
@2lives and @EricChan277
Sorry, we are not open to contributors at this time!
GNU AGPLv3 © 2018 Eric Chan