New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

foxhole-api-wrapper

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

foxhole-api-wrapper

A NPM package for foxhole

1.0.1
latest
Source
npm
Version published
Weekly downloads
3
-76.92%
Maintainers
1
Weekly downloads
 
Created
Source

Foxhole-API-Wrapper

A NPM package for foxhole

Install

npm i foxhole-api-wrapper

Usage

const FoxHoleApi = require('foxhole-api-wrapper')
const foxhole = new FoxHoleApi()

foxhole.foxholeService.init() // Init module /!\ IT'S REQUIRED /!\

Fonction

getWarInfo()

Return a promise war info of current war

const FoxHoleApi = require('foxhole-api-wrapper')
const foxhole = new FoxHoleApi()
foxhole.foxholeService.init()

//Return Live1 war info
foxhole.live1.getWarInfo().then((data) =>{
    console.log(data)
})

//Return Live2 war info
foxhole.live2.getWarInfo().then((data) =>{
    console.log(data)
})

getAllMaps()

Return a promise with all map name

const FoxHoleApi = require('foxhole-api-wrapper')
const foxhole = new FoxHoleApi()
foxhole.foxholeService.init()

//Return Live1 maps
foxhole.live1.getAllMaps().then((data) =>{
    console.log(data)
})

//Return Live2 maps
foxhole.live2.getAllMaps().then((data) =>{
    console.log(data)
})

getCasualties()

Return a promise with all Casualties for each maps and global maps

const FoxHoleApi = require('foxhole-api-wrapper')
const foxhole = new FoxHoleApi()
foxhole.foxholeService.init()

//Return Live1 casualties
foxhole.live1.getCasualties().then((data) =>{
    console.log(data)
})

//Return Live2 casualties
foxhole.live2.getCasualties().then((data) =>{
    console.log(data)
})

Keywords

foxhole

FAQs

Package last updated on 20 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts