forked from crypti/cryptocurrencies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.js
74 lines (58 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
const fs = require('fs');
const fetch = require('isomorphic-fetch');
const sortby = require('lodash.sortby');
const request = require('sync-request');
const ora = require('ora');
const chalk = require('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.
*/
sorted.forEach((currency, index) => {
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 res = request('get', `https://www.cryptocompare.com${ImageUrl}`);
fs.writeFileSync(`images/${Name.replace(/[:*?\\/<>|]/g, '_')}.${ImageUrl.split('.').pop()}`, res.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 currencies 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';
table += '| Symbol | Name |\n';
table += '| :------ | :------ |\n';
newSymbols.forEach(symbol => {
table += `| \`${symbol}\` | ${data[symbol]} |\n`;
});
// Look for the HTML comments in the README as a target
const targetRegex = /<!-- BEGIN TABLE INJECT -->(\w|\W)*<!-- END TABLE INJECT -->/gim;
const updated = template.replace(targetRegex, `<!-- BEGIN TABLE INJECT -->\n${table}\n<!-- END TABLE INJECT -->`);
fs.writeFileSync('readme.md', updated);
spinner.succeed(['Readme Markdown Table updated']);
console.log('\n', 'Remember to', chalk.yellow('git commit'), 'and', chalk.yellow('npm publish'));
})
.catch(err => console.error(err));