/electron-crypto-app

An application to track various cryptocurrency prices using React and Electron

Primary LanguageJavaScript

electron-crypto-app

An application to track various cryptocurrency prices using React and Electron

  • My Operating System: macOS Catalina
  • Version of Node: 14.15.4

Installation Instructions

  • Fork and Clone this Repository
  • CD to your local copy of the repo
  • In terminal type EITHER npm install or yarn install

Environment Variables

In order for the app to function correctly, the user must set up their own environment variables.

COINRANK_API_KEY=YOUR_API_KEY
TWITTER_API_KEY=YOUR_API_KEY
TWITTER_API_SECRET_KEY=YOUR_API_KEY
TWITTER_BEARER_TOKEN=YOUR_API_KEY


Set scripts key in package.json

"scripts": {
    "start": "electron .",
    "watch": "webpack --config webpack.config.js --watch"
  }


APIs Used:

Coinrank UUID for requested coins:

Coin UUID Image URL
Cardano qzawljRxB5bYu https://cdn.coinranking.com/ryY28nXhW/ada.svg
Tezos fsIbGOEJWbzxG https://cdn.coinranking.com/HkLUdilQ7/xtz.svg
Burst LUbkfWw7GwJ73 https://cdn.coinranking.com/HJd-fB5NG/burst.svg


Sample API responses


Request users from Twitter API

{
    "data": [
        {
            "url": "https://t.co/OHYYkRTi7o",
            "name": "BBC News Africa",
            "profile_image_url": "https://pbs.twimg.com/profile_images/974268677808951296/liHjl2Rl_normal.jpg",
            "verified": true,
            "public_metrics": {
                "followers_count": 3215420,
                "following_count": 1388,
                "tweet_count": 84547,
                "listed_count": 7753
            },
            "id": "36670025",
            "username": "BBCAfrica"
        },
        {
            "url": "http://t.co/4ddfpMCNLY",
            "name": "Ethereum",
            "location": "worldwide",
            "profile_image_url": "https://pbs.twimg.com/profile_images/1084788308595617793/DOnqq1OM_normal.jpg",
            "verified": true,
            "public_metrics": {
                "followers_count": 646228,
                "following_count": 0,
                "tweet_count": 2891,
                "listed_count": 6925
            },
            "id": "2312333412",
            "username": "ethereum"
        }
    ]
}

Request Tweets from specified user

{
    "data": [
        {
            "id": "1356810639407263744",
            "text": "RT @WeekInEthNews: ⟠ Latest Week in $ETH News\n\n🤝 @reddit partners with Eth Foundation\n⬆️ proposal for first proof of stake chain upgrade…",
            "author_id": "2312333412",
            "public_metrics": {
                "retweet_count": 43,
                "reply_count": 0,
                "like_count": 0,
                "quote_count": 0
            },
            "created_at": "2021-02-03T03:43:59.000Z"
        },
        {
            "id": "1356714710465454086",
            "text": "RT @trent_vanepps: Workshop: Sharding and Eth1+Eth2 Merge 🤝\n\n1. (UTC 21:10-22:40 ): The Sharding Design and the Cryptographic Primitives @d…",
            "author_id": "2312333412",
            "public_metrics": {
                "retweet_count": 34,
                "reply_count": 0,
                "like_count": 0,
                "quote_count": 0
            },
            "created_at": "2021-02-02T21:22:48.000Z"
        },
    ]
}

Request Coin Price Data

{
    "status": "success",
    "data": {
        "stats": {
            "total": 3,
            "totalMarkets": 68286,
            "totalExchanges": 212,
            "totalMarketCap": "1124930769275.65618676055701700377",
            "total24hVolume": "127138643262.40293061230568536622"
        },
        "coins": [
            {
                "uuid": "fsIbGOEJWbzxG",
                "symbol": "XTZ",
                "name": "Tezos",
                "color": "#2c7df7",
                "iconUrl": "https://cdn.coinranking.com/HkLUdilQ7/xtz.svg",
                "marketCap": "2291530697.02253699615577455499",
                "price": "3.0199506957910766566",
                "listedAt": 1530662400,
                "tier": 1,
                "change": "4.717958098914892",
                "rank": 23,
                "sparkline": [
                    "2.88669859596853909132",
                ],
                "coinrankingUrl": "https://coinranking.com/coin/fsIbGOEJWbzxG+tezos-xtz",
                "24hVolume": "376313515.59961526998378861394",
                "btcPrice": "0.000082132582398071"
            },
        ]
    }
}


Details regarding screen capture feature:

I ran into trouble while working on implementing the screen capture functionality. My approach was to use html2canvas and jsPDF to capture an image of all of the content within a specified <div>. I was going to wrap the entire Home component, which includes the price data in a special div, to target on a button click.

Trouble started when I tried to write out the logic for capturing the screen. I left the code commented out inside of Home.js. It threw an error regarding global not being defined. I believe that it had to do with the html2canvas library and its implementation. One possible solution would be to change the Content Security Policy, but that opens up the application to unnecessary risk.

After that problem is solved, I was having difficulty figuring out how to get the information from my component to the main process, so that I could use the fs module and save the PDF to the user's computer. I expect I would have to define the function to save the PDF in a separate file, and change the way that I was calling it, as well as the layout. Because the Nav component isn't directly connected to the Home component.

Another possible solution that I came across as a solution to this task was to create a video element, and take advantage of navigator.mediaDevices.getUserMedia() to create a stream, and then write that stream to a canvas element. However I ran out of time before I could explore that option more.