-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
50 lines (37 loc) · 1.28 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const express = require('express');
const app = express();
const cheerio = require('cheerio');
const axios = require('axios');
// goal of this tutorial
/// get countries list
/// get name and iso code of each country
// website url page to scrape
const websiteURL = 'https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3'
// fetching data
app.get('/', (req, res) => {
axios(websiteURL)
.then(response => {
const html = response.data
const $ = cheerio.load(html) // load fetched data
const countries = []; // storing data of all countries
// select classname and use each method
$('.plainlist ul li', html).each(function () {
// data of each country
const country = { name: "", iso3: "" };
country.name = $(this).children("a").text();
country.iso3 = $(this).children("span").text();
// populate countries with each country data
countries.push({
country
})
})
// get data
res.json(countries)
}).catch(err => console.log(err))
})
// set port
PORT = 8080
// running server
app.listen(PORT, () => {
console.log(`server is running on ${PORT}`)
});