fortnitetracker-7days-stats
v3.3.1
Published
get stats for the last 7 days from fortnitetracker.com
Downloads
537
Maintainers
Readme
fortnitetracker-7days-stats
Node module for obtaining the last 7 days stats from fortnitetracker.com
Note:
Fortnitetracker recently did some changes to their site. I've updated this module to use their V2 stats. Should work for now.
Installation
npm install fortnitetracker-7days-stats
Example usage
Platforms: pc
, psn
, xbl
const fnt = require('fortnitetracker-7days-stats');
fnt.getStats("MonsterMannen", "pc", (err, result) => {
if(err){
console.log(err.message); // player not found
}else{
console.log("Wins in the last 7 days: " + result.wins);
}
});
result
has the following fields
result.accountName
result.platform
result.skinUrl
result.score
result.kills
result.wins
result.matches
result.top_3_5_10
result.top_6_12_25
result.kd
result.wr
result.minutesPlayed