https://github.com/adrianhajdin/tutorial_currency_converter
This is a code repository for the corresponding article on Medium. In this tutorial, we will build educational application that is going to improve your overall knowledge of Async/Await.
https://github.com/adrianhajdin/tutorial_currency_converter
article tutorial-code
Last synced: 5 months ago
JSON representation
This is a code repository for the corresponding article on Medium. In this tutorial, we will build educational application that is going to improve your overall knowledge of Async/Await.
- Host: GitHub
- URL: https://github.com/adrianhajdin/tutorial_currency_converter
- Owner: adrianhajdin
- Created: 2018-12-16T22:09:56.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-05T20:47:12.000Z (over 6 years ago)
- Last Synced: 2025-04-08T02:43:22.203Z (6 months ago)
- Topics: article, tutorial-code
- Language: JavaScript
- Homepage:
- Size: 29.3 KB
- Stars: 52
- Watchers: 1
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Master Async/Await With This Real World Example
## Currency Converter TutorialThis is a code repository for the corresponding [article](https://medium.freecodecamp.org/how-to-master-async-await-with-this-real-world-example-19107e7558ad) on Medium.
In this tutorial, we will build simple, but educational and useful application that is going to improve your overall knowledge of Async/Await.
The program will take in currency code we want to convert from and currency code we want to convert to, as well as the amount of money, afterwards, the program will output correct exchange rate based on the data from the API’s.
In this application we’re going receive data from two asynchronous sources:
1. Currency Layer — https://currencylayer.com — You’ll need to sign up for free so you can use API Access Key. This API will provide us with data needed to calculate exchange rate between currencies.
2. Rest Countries — http://restcountries.eu/ — This API will give us information about where can we use the currency we just converted our money to.