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

react-crypto-compare

v1.3.2

Published

A simple cryptocurrencies converter component based on https://min-api.cryptocompare.com

Downloads

30

Readme

react-crypto-compare

A simple cryptocurrencies converter component based on https://min-api.cryptocompare.com. Min React version: 16.8.

Build Status Build Cron Renovate enabled Commitizen friendly Open Source
Love TypeScript

What this component does

Install

npm install --save react-crypto-compare

How to use

First of all, you need a cryptocompare.com api key.

Then

import CryptoCompare from "react-crypto-compare";
// ...
<CryptoCompare from="EUR" to="BTC" amount={10} apikey="<YOUR_CRYPTOCOMPARE.COM_APIKEY>" />;

it renders

<div class="react-crypto-compare">
  <span class="react-crypto-compare-amount">0.001408</span>
  <span class="react-crypto-compare-currency">BTC</span>
</div>

You can set the api key just once to avoid passing it to the component

import CryptoCompare, { setApikey } from "react-crypto-compare";
setApikey("<YOUR_CRYPTOCOMPARE.COM_APIKEY>");
// ...
<CryptoCompare from="EUR" to="BTC" amount={10} />;

please note that the apikey prop, if passed, takes the precedence over the global api key set though setApikey.

CSS Classes

You can customize the look&feel of the component using its classes

.react-crypto-compare
.react-crypto-compare-error
.react-crypto-compare-loading

and its children ones

.react-crypto-compare-amount
.react-crypto-compare-currency

Working example

Run

cd example && npm run start

Possible improvements

  • managing the decimals for every cryptocurrency (at the moment fixed at eight thinking about Bitcoin)
  • passing the CSS classes from the parent component
  • adding an interval-based refresh to have always the most updated conversion
  • managing multiple currencies conversion in a single component
  • adding a render prop to manage the rendered markup from the outside

Why

I've developed it because I'd some spare time (more less 4 hours) and I'd like to play with:

Contributing

PR or issues are welcome 👋

Contributors

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!