Skip to content

Instantly share code, notes, and snippets.

@AndrejsAbrickis
Last active January 14, 2019 06:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndrejsAbrickis/06d2fe5fceac7e6f40c6ef241a660669 to your computer and use it in GitHub Desktop.
Save AndrejsAbrickis/06d2fe5fceac7e6f40c6ef241a660669 to your computer and use it in GitHub Desktop.
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