npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

kencrypto-iago

v1.0.1

Published

Biblioteca que simplifica duas rotas da API CoinMarketCap, feito como uma atividade do curso fullstack da Kenzie Academy

Downloads

1

Readme

kencrypto

Biblioteca que simplifica duas rotas da API CoinMarketCap, feito como uma atividade do curso fullstack da Kenzie Academy

Documentação da CoinMarketCap: https://coinmarketcap.com/api/documentation/v1/

Como instalar e rodar?

Instalação:

npm i kencrypto-iago

Basta exportar a classe "KenCrypto" e criar uma instancia. Ela recebe como parametro sua chave da biblioteca CoinMarketCap e possui os metodos para ver a cotação atual da moeda e a conversão de preço de uma moeda para outra

Utilização

Metodo .quote

mostra a cotação da moeda.

Parametro: symbol - Symbol da moeda. O symbol deve aceitar uma ou mais moedas. Se for mais de uma, elas devem estar separadas por vírgula, da seguinte forma: symbol=BTC,ETH.

exemplo de retorno:

{
    "data": {
        "BTC": {
            "id": 1,
            "name": "Bitcoin",
            "symbol": "BTC",
            "slug": "bitcoin",
            "date_added": "2013-04-28T00:00:00.000Z",
            "last_updated": "2021-08-26T17:44:11.000Z",
            "quote": {
                "USD": {
                    "price": 46963.215165006586,
                    "last_updated": "2021-08-26T17:44:11.000Z"
                }
            }
        }
    }
}

Metodo .conversion

Converte um valor de uma cryptomoeda para outra moeda.

Parametros:

  • amount: valor para converter
  • symbol: Symbol da moeda que quer converter. Só aceita uma.
  • convert: Symbol da moeda que quer que o valor seja convertido. Só aceita uma.

exemplo de retorno:

{
    "data": {
        "id": 1,
        "symbol": "BTC",
        "name": "Bitcoin",
        "amount": 25.67,
        "last_updated": "2021-08-26T18:30:17.000Z",
        "quote": {
            "ETH": {
                "price": 386.5352847529818,
                "last_updated": "2021-08-26T18:30:16.000Z"
            }
        }
    }
}

Types

Também pode ser exportado da biblioteca os seguintes types para programação com typescript:

  • quoteInterface: retorno do metodo .quote
  • conversionInfosInterface: retorno do metodo .conversion
  • errorInterface: formado do retorno dos metodos, em caso e erro

Tecnologias utilizadas

  • typescript
  • axios

Licence

MIT