Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sajjadmrx/cryptoland


https://github.com/sajjadmrx/cryptoland

Last synced: 6 days ago
JSON representation

Awesome Lists containing this project

README

        

**cryptoland**

Get the current price of a cryptocurrency

# Installation

**Node.js 12 or newer is required.**

```bash
npm install cryptoland
```
## Example usage
get Dogecoin information
```js
const cryptoLand = require('cryptoland')

cryptoLand.getCrypto('dogecoin')
.then(data => {
console.log(data)
})
.catch(err => {
console.log(err)
})
```