cryptoland
Get the current price of a cryptocurrency
Node.js 12 or newer is required.
npm install cryptoland
get Dogecoin information
const cryptoLand = require('cryptoland')
cryptoLand.getCrypto('dogecoin')
.then(data => {
console.log(data)
})
.catch(err => {
console.log(err)
})