💫 A CLI app to grab the current ETH price from your terminal in USD and/or other cryptocurrency symbols
A super simple CLI utilizing CryptoCompare API to grab the ETH price during a serious code session.
$ npm install --global eth-price
$ eth-price --help
Usage
$ eth-price [toSymbol]
Examples
$ eth-price
USD: 262.69
$ eth-price btc
BTC: 0.0927
$ eth-price xrp,btc,usd
XRP: 937.07
BTC: 0.09277
USD: 261.91
$ npm install --save eth-price
const ethPrice = require('eth-price');
ethPrice('usd,btc');
// ['USD: 260.23', 'BTC: 0.0923']
Returns a string formatted list of the prices in their symbols.
Type: string
A string list of symbols you want the ETH price in.
MIT © Crypti Team