CryptoWatch

A WebApp that allows you to follow Cryptos’ News and Stats.

Table of Contents
  1. About The Project

  2. Getting Started

About The Project

Home Screen Shot

CryptoWatch is one of my just-for-fun projects. The application allows you to follow the currently available Cryptos in the market and gives you some insights about the actual prices and stats of Cryptos. In addition, Cryptowatch gives you the possibility to search news and updates about coins. Grouping all these features in one single place gives you the ability to reduce the amount of time passed searching for Cryptos.

(back to top)

Screenshots

Coins Screen Shot
Coin Detail Screen Shot
Exchanges Name Screen Shot
News Name Screen Shot

(back to top)

Built With

In order to transform the idea into a real functional product, the list bellow of technologies & tools were used:

(back to top)

Getting Started

To get a local copy up and running follow these steps.

Prerequisites

You need to have Node.js and npm to be installed in your local machine. Verify that by executing

  • node
    node -v
  • npm
    npm -v

Installation

In order to interact with real data the project uses some API endpoints from RapidAPI and https://www.coingecko.com/en/api

  1. Get API Keys at:
  2. Clone the repo
    git clone https://github.com/Ghassen-Ben-Othmen/cryptowatch
  3. Add .env file:

    REACT_APP_RAPID_API_COINRANKING_HOST=
    REACT_APP_RAPID_API_COINRANKING_KEY=
    REACT_APP_RAPID_API_FREENEWS_HOST=
    REACT_APP_RAPID_API_FREENEWS_KEY=
    GENERATE_SOURCEMAP=false
  4. Install NPM packages
    npm install
  5. Start the project
    npm start

(back to top)