Last active
January 14, 2019 06:57
-
-
Save AndrejsAbrickis/06d2fe5fceac7e6f40c6ef241a660669 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const axios = require('axios'); | |
const cheerio = require('cheerio'); | |
(async () => { | |
try { | |
const response = await axios.get('https://bvopen.abrickis.me/#/standings'); | |
const $ = cheerio.load(response.data); | |
console.log($('body').html()); | |
} catch (error) { | |
console.log(error); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment