-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
76 lines (68 loc) · 2.06 KB
/
index.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
const axios = require("axios");
const cheerio = require("cheerio");
const express = require("express");
async function getPrice() {
try {
const siteUrl = "https://coinmarketcap.com/";
const { data } = await axios({
method: "GET",
url: siteUrl,
});
const coin = [
"rank",
"name",
"price",
"24hr",
"7days",
"marketCap",
"volume",
"circulatingSupply",
];
const coinArray = [];
const $ = cheerio.load(data);
const pageSelector =
"#__next > div > div.sc-fzqARJ.eLpUJW.cmc-body-wrapper > div > div > div.tableWrapper___3utdq.cmc-table-homepage-wrapper___22rL4 > table > tbody > tr";
$(pageSelector).each((parentIdx, parentElem) => {
let key = 0;
const coinObj = {};
if (parentIdx < 10) {
$(parentElem)
.children()
.each((childIdx, childElem) => {
let tdVal = $(childElem).text();
if (key === 1 || key === 6) {
tdVal = $(
"p:first-child",
$(childElem).html()
).text();
}
if (tdVal) {
coinObj[coin[key]] = tdVal;
key++;
}
});
coinArray.push(coinObj);
}
});
return coinArray;
} catch (err) {
console.log(err);
}
}
const app = express();
app.get("/api/price", async (req, res) => {
try {
const priceFeed = await getPrice();
console.log(priceFeed);
return res.status(200).json({
result: priceFeed,
});
} catch (err) {
return res.status(500).json({
err: err.toString(),
});
}
});
app.listen(3000, () => {
console.log("Running on port 3000");
});