fortnitetracker-7days-stats

get stats for the last 7 days from fortnitetracker.com

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
fortnitetracker-7days-stats
323.3.14 years ago5 years agoMinified + gzip package size for fortnitetracker-7days-stats in KB

Readme

fortnitetracker-7days-stats
npm npm David 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 ```javascript 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.top3510 result.top61225 result.kd result.wr result.minutesPlayed ```