1.0.2 • Published 3 years ago

gametracker-scraper v1.0.2

Weekly downloads
3
License
MIT
Repository
-
Last release
3 years ago

Gametracker scraper

A module that allows you to scraping from Gametracker.

Discord Server.

npm install gametracker-scraper
const module = require('gametracker-scraper')
async function output() {
let info = await module.get('gametracker-server-url')
console.log(info)
  }
output()

/*/
{
  Map: 'crossfire',
  Online: '7',
  Maxs: '32',
  Players: {
    Name: [
      'Name',
      'player1',
      'player2'
    ],
    Score: [
      'Score', ' 8',
      ' 7'
    ],
    Times: [
      'Time Played',
      ' 02:56',
      ' 14:56'
    ]
  }
}

/*/