代码拉取完成,页面将自动刷新
同步操作将从 Gitee 极速下载/ccxt 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
const fetch = require ('./js/static_dependencies/fetch-ponyfill/fetch-node') ().fetch
function style(s, style) {
return style + s + '\033[0m'
}
const colors = {
black: 30,
red: 31,
green: 32,
yellow: 33,
blue: 34,
white: 37,
gray: 90,
}
let colorFunctions = {}
for (let color of Object.keys (colors)) {
colorFunctions[color] = (s) => console.log (style (s, '\033[' + colors[color].toString () + 'm'))
}
let ascii = [
' ',
' :Siiiiiiiiiiir rSiiiiiiiiiiS:',
' r&9hh&&&&&&&A5 SG99h&&&&&&GHr',
' ;hX32;::::::;, i9X9S:;:::::;,',
' ;hX9S ihXhr ',
' ;hX32::::::,:, i9X9i::::::,:.',
' rG999GGGGGGGAS iG99hGGGGGGGAr',
' ;2S55SSSSSSS2r r2555SSSSSSS2;',
' ;2S5s ;2S2r r2SS555555SS2;',
' rAh&2 sAhAS SAGGh9999GGGAr',
' .:,::rrrs::::, ,:,,;9X3X:,,:.',
' &A&H, ,hX33 ',
' ,;:;;;;;r;;:;, ,hX3X. ',
' rHGAX sAGA5 :&9h9. ',
' :Ssir ;isir ,Siii ',
' ',
]
let footer = [
' ',
' ---------------------------------------------------',
' ',
' You can contribute in crypto directly: ',
' ',
' ETH 0x26a3CB49578F07000575405a57888681249c35Fd ',
' BTC 33RmVRfhK2WZVQR1R83h2e9yXoqRNDvJva ',
' BCH 1GN9p233TvNcNQFthCgfiHUnj5JRKEc2Ze ',
' LTC LbT8mkAqQBphc4yxLXEDgYDfEax74et3bP ',
' ',
' ---------------------------------------------------',
' ',
' Thank you! ',
' ',
]
async function getData () {
const collectiveData = await (await fetch ('https://opencollective.com/ccxt.json')).json ()
const githubData = await (await fetch ('https://api.github.com/repos/ccxt/ccxt')).json ()
return {
contributors: collectiveData['contributorsCount'].toLocaleString (),
backers: collectiveData['backersCount'].toLocaleString (),
balance: Math.floor (collectiveData['balance'] / 100).toLocaleString (),
budget: Math.floor (collectiveData['yearlyIncome'] / 100).toLocaleString (),
stars: githubData['stargazers_count'].toLocaleString (),
forks: githubData['forks_count'].toLocaleString (),
size: (githubData['size'] / 1000000).toFixed (2)
}
}
function pad (string) {
const padding = 80 - string.length
const half = Math.floor (padding / 2)
return ' '.repeat (half + (padding % 2)) + string + ' '.repeat (half)
}
async function main () {
const data = await getData()
colorFunctions['blue'] (ascii.join ('\n'))
colorFunctions['red'] (pad (`Stars: ${data.stars}`))
colorFunctions['red'] (pad (`Forks: ${data.forks}`))
colorFunctions['red'] (pad (`Contributors: ${data.contributors}`))
colorFunctions['red'] (pad (`Size: ${data.size}MB`))
colorFunctions['yellow'] ('\n' + pad ('Thanks for installing ccxt 🙏'))
colorFunctions['gray'] (pad ('Please consider donating to our open collective'))
colorFunctions['gray'] (pad ('to help us maintain this package.'))
colorFunctions['yellow'] (pad ('👉 Donate: https://opencollective.com/ccxt/donate 🎉'))
colorFunctions['white'] (pad (`Thanks to our ${data.backers} backers we are operating on an annual budget of $${data.budget}`))
colorFunctions['yellow'] (footer.join ('\n'))
}
main()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。