Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrewjbateman/ionic-react-bitcoin
:clipboard: Ionic 5 React app to show bitcoin prices. Tutorial code.
https://github.com/andrewjbateman/ionic-react-bitcoin
bitcoin-price ionic react tutorial-code youtube-video-series
Last synced: 14 days ago
JSON representation
:clipboard: Ionic 5 React app to show bitcoin prices. Tutorial code.
- Host: GitHub
- URL: https://github.com/andrewjbateman/ionic-react-bitcoin
- Owner: AndrewJBateman
- License: mit
- Created: 2019-10-18T13:05:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T22:59:08.000Z (about 2 years ago)
- Last Synced: 2024-11-07T03:35:48.121Z (2 months ago)
- Topics: bitcoin-price, ionic, react, tutorial-code, youtube-video-series
- Language: JavaScript
- Homepage:
- Size: 5.48 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# :zap: Ionic React Bitcoin
* App to display current bitcoin price data (BPI) in USD, EUR, and GBP from the [CoinDesk Bitcoin Price Index API](https://www.coindesk.com/api).
* This is a great tutorial from Paul Halliday of the Developer School, [Youtube video series: 'Ionic 4 & React - Bitcoin Price Tracker'](https://www.youtube.com/watch?v=sPvL3OlnmI8&list=PLtKjv92L0ihBWO6NtZhXEsR9NXf7Uf_ki&index=1)## :page_facing_up: Table of contents
* [:zap: Ionic React Bitcoin](#zap-ionic-react-bitcoin)
* [:page_facing_up: Table of contents](#page_facing_up-table-of-contents)
* [:books: General info](#books-general-info)
* [:camera: Screenshots](#camera-screenshots)
* [:signal_strength: Technologies](#signal_strength-technologies)
* [:floppy_disk: Setup](#floppy_disk-setup)
* [:computer: Code Examples](#computer-code-examples)
* [:cool: Features](#cool-features)
* [:clipboard: Status & To-do list](#clipboard-status--to-do-list)
* [:clap: Inspiration](#clap-inspiration)
* [:file_folder: License](#file_folder-license)
* [:envelope: Contact](#envelope-contact)## :books: General info
* This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## :camera: Screenshots
![screenshot](./img/bitcoin-display.png)
## :signal_strength: Technologies
* [Ionic v5](https://ionicframework.com/)
* [Ionic/react v5](https://ionicframework.com/)
* [React v16](https://reactjs.org/) installed globally
* [React Scripts v4](https://www.npmjs.com/package/react-scripts) installed globally, scripts and configuration used by Create React App.
* [CoinDesk Bitcoin Price Index API](https://www.coindesk.com/api)
* [npx](https://www.npmjs.com/package/npx) CLI tool whose purpose is to make it easy to install and manage dependencies hosted in the npm registry.## :floppy_disk: Setup
* To start the server on _localhost://3000_ type: 'npm run start'
## :computer: Code Examples
* display bitcoin logo and API prices & disclaimer
```javascript
render() {
const { bitcoinInfo, loading } = this.state;
return (
{loading
? this.createLoadingCards()
: this.createBitcoinCards(bitcoinInfo)}
{bitcoinInfo.disclaimer}
);
}
```## :cool: Features
* No API key required
* Shows skeleton cards while data is loading.
* Bitcoin price shown in dollars, UK pounds and euros. See API ref for more cryptocurrency options.## :clipboard: Status & To-do list
* Status: Working. Updated april 2021
* To-do: nothing## :clap: Inspiration
* Paul Halliday of the Developer School, Youtube video series: 'Ionic 4 & React - Bitcoin Price Tracker'
* [Video 1 of 9: Project Overview](https://www.youtube.com/watch?v=sPvL3OlnmI8&list=PLtKjv92L0ihBWO6NtZhXEsR9NXf7Uf_ki&index=1)
* [FCC: npm vs npx — What’s the Difference?](https://www.freecodecamp.org/news/npm-vs-npx-whats-the-difference/)## :file_folder: License
* This project is licensed under the terms of the MIT license.
## :envelope: Contact
* Repo created by [ABateman](https://github.com/AndrewJBateman), email: [email protected]