fortnite-simple-api
v1.0.1
Published
This is a Fortnite API. It give you access to pve and pvp stats. It is based on StormShildOne.com
Downloads
7
Readme
Fortnite-Simple-API
Setup
- Open cmd.exe.
- Go to your Project directory.
- Type in 'npm i fortnite-simple-api'.
Example
const fortnite-simple-api = require('fortnite-simple-api');
fortnite-simple-api.get('Spackor', (error, stats) => {
if(!error){
console.log(stats);
}else{
console.log(error);
}
});