A simple, easy to use module for interacting with the FortniteTracker API
$ npm i fortnite
- Signup at FortniteTracker
- Generate an API Key
// Bring in the Fortnite module
const Client = require('fortnite');
// Create an instance of the client with your API Key
const fortnite = new Client('Your-API-Key');
// Get the stats of an Xbox player by the name of Number1Swifty
fortnite.user('Number1Swifty', 'xbl').then(console.log);