crypto-price-converter-xid
v1.0.3
Published
A simple npm module to convert cryptocurrency prices between different currencies.
Downloads
5
Maintainers
Readme
Crypto Price Converter
A simple npm module to convert cryptocurrency prices between different currencies.
Installation
You can install the module via npm:
npm i crypto-price-converter-xid
USAGE
const convertCryptoCurrencyPrice = require('crypto-price-converter-xid');
convertCryptoCurrencyPrice('BTC', 'USD')
.then(price => console.log(`1 BTC is currently worth $${price} USD`))
.catch(err => console.error('Error:', err.message));