Skip to content

Commit

Permalink
init demo project
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrejsAbrickis committed Jan 13, 2019
0 parents commit b25d73b
Show file tree
Hide file tree
Showing 5 changed files with 587 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
node_modules
13 changes: 13 additions & 0 deletions axios-cheerio.js
@@ -0,0 +1,13 @@
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);
}
})();

0 comments on commit b25d73b

Please sign in to comment.