gametracker-scraper
Version:
A module that allows you to scraping from Gametracker
45 lines (39 loc) • 629 B
Markdown
Gametracker scraper
A module that allows you to scraping from Gametracker.
[Discord Server](https://discord.com/invite/peFGuU3).
```shell
npm install gametracker-scraper
```
```javascript
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'
]
}
}
/*/
```