forked from typeofweb-org/typeofweb-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxkcd.js
49 lines (44 loc) · 1.05 KB
/
xkcd.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
// @ts-check
const Bluebird = require('bluebird');
const Fsp = require('fs/promises');
const fetch = require('node-fetch').default;
const run = async () => {
let i = 1;
const result = await Bluebird.map(
Array.from({ length: 2579 }, (_, idx) => idx + 1),
async (idx) => {
try {
const res = await fetch(`https://xkcd.com/${idx}/info.0.json`);
const json = await res.json();
console.log(`${i++} / 2579`);
return [idx, json];
} catch (err) {
console.error(err);
return [];
}
},
{ concurrency: 20 },
);
const result2 = result.reduce((acc, [idx, json]) => {
if (!json) {
return acc;
}
acc[idx] = json;
return acc;
}, {});
const result3 = {
lastUpdatedAt: new Date().toISOString(),
data: result2,
};
await Fsp.writeFile(
`${__dirname}/src/commands/xkcd.cache.json`,
JSON.stringify(result3),
'utf-8',
);
await Fsp.writeFile(
`${__dirname}/dist/src/commands/xkcd.cache.json`,
JSON.stringify(result3),
'utf-8',
);
};
run();