crypto-status-cli
v1.0.3
Published
A command line interface to monitor cryptocurrency
Downloads
6
Readme
Crypto CLI 💸
A command line interface to monitor to monitor cryptocurrency
Installation 🚀
Install crypto cli with npm
# Install the package
$ npm i crypto-status-cli
# If you are running locally, type this
$ npm install
Usage/Examples 💪
After installed the CLI, you can run the commands below:
# Return The largest Crypto Coin Price in the last 24 Hours
$ crypto-status --price
# Return Bitcoin Average Price in the last 24 Hours
$ crypto-status --bitcoin
# Return Ethereum Average Price in the last 24 Hours
$ crypto-status --ethereum
# If you want to run multiple commands, it's possible.
$ crypto-status --price --bitcoin --ethereum
Or, you can try to run it locally
# Return The largest Crypto Coin Price in the last 24 Hours
$ node crypto.mjs crypto-status --price
# Return Bitcoin Average Price in the last 24 Hours
$ node crypto.mjs crypto-status --bitcoin
# Return Ethereum Average Price in the last 24 Hours
$ node crypto.mjs crypto-status --ethereum