-
Notifications
You must be signed in to change notification settings - Fork 112
/
build.js
88 lines (73 loc) · 2.44 KB
/
build.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
77
78
79
80
81
82
83
84
85
86
87
88
/* eslint-disable unicorn/prefer-top-level-await */
import fs from 'node:fs';
import fetch from 'isomorphic-fetch';
import sortby from 'lodash.sortby';
import request from 'sync-request';
import ora from 'ora';
import chalk from 'chalk';
const endpoint = 'https://www.cryptocompare.com/api/data/coinlist/';
const spinner = ora('Building currencies').start();
spinner.color = 'magenta';
fetch(endpoint)
.then(response => response.json())
.then(json => {
const sorted = sortby(json.Data, o => o.CoinName);
const symbols = {};
let imagesSaved = 0;
/**
* Build the JSON file based on the cryptocompare coinlist.
*/
for (const [index, currency] of sorted.entries()) {
const {Name, CoinName, ImageUrl} = currency;
symbols[Name] = CoinName.trim();
// Download the image for future use
if (ImageUrl) {
spinner.text = `${chalk.gray(index)} ${Name}`;
spinner.render();
const response = request(
'get',
`https://www.cryptocompare.com${ImageUrl}`,
);
fs.writeFileSync(
`images/${Name.replaceAll(/[:*?\\/<>|]/g, '_')}.${ImageUrl.split('.').pop()}`,
response.getBody(),
);
imagesSaved += 1;
}
}
spinner.succeed([`${imagesSaved} images saved to /images`]);
spinner.color = 'yellow';
spinner.start('Saving cryptocurrencies.json file');
fs.writeFileSync('cryptocurrencies.json', JSON.stringify(symbols, null, 2));
spinner.succeed(
`${sorted.length} currencies saved to cryptocurrencies.json`,
);
spinner.start('Saving Readme');
/**
* Build the markdown table of currency info in the Readme.
*/
const template = fs.readFileSync('readme.md').toString();
const data = JSON.parse(
fs.readFileSync('cryptocurrencies.json').toString(),
);
const newSymbols = Object.keys(data);
let table = `There are currently **${newSymbols.length} cryptocurrencies** represented*:\n`;
table += `\n<small><em>* Last updated: ${new Date().toUTCString()}</em></small>`;
table += '\n\n';
// Look for the HTML comments in the README as a target
const targetRegex = /<!-- begin inject -->(\w|\W)*<!-- end inject -->/gim;
const updated = template.replaceAll(
targetRegex,
`<!-- BEGIN INJECT -->\n${table}\n<!-- END INJECT -->`,
);
fs.writeFileSync('readme.md', updated);
spinner.succeed(['Readme Markdown updated']);
console.log(
'\n',
'Remember to',
chalk.yellow('git commit'),
'and',
chalk.yellow('npm publish'),
);
})
.catch(error => console.error(error));