Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/seven-33/forex-forecast-react

App that helps users to find best possible time for converting money from one currency to another, using historical currency rates
https://github.com/seven-33/forex-forecast-react

currency currencyconverter minify react reacthooks reactjs

Last synced: 4 days ago
JSON representation

App that helps users to find best possible time for converting money from one currency to another, using historical currency rates

Awesome Lists containing this project

README

        

# React forex forecast

Web app that helps users to find best possible time for converting money from one currency to another, using historical currency rates.

## Demo
Link to Demo App: https://github.com/robinsondev428/forex-forecast-react.git

## How to Load the App

The project uses Node.js and the [Create React App](https://github.com/facebook/create-react-app) starter. If you do not have Node >= 6.x installed, you can download it here: [Node.js](https://nodejs.org/en/)

Once Node is installed, navigate to the directory where you want to store the app run commands:
```
git clone https://github.com/robinsondev428/forex-forecast-react.git

npm install
```
Once all of the dependencies have been installed successfully from the project directory you can launch the app with
```
npm start
```

A new browser window should automatically open displaying the app. If it doesn't, navigate to [http://localhost:3000/](http://localhost:3000/) in your browser

![Converter Screen](src/assets/images/converter-app.png "forex forecast")

The page will reload if you make edits.

You will also see any lint errors in the console.

Launche the test runner in the interactive watch mode with

```
npm test
```
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

Builds the app for production to the `build` folder with

```
npm run build
```
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.

Your app is ready to be deployed!!

## App Description

- Contains App, Converter, Chart-view, Loader, Alert components in src folder
- Have used [gh-pages](https://github.com/tschaub/gh-pages) to deploy the app
- API used for currency rates [Exchange rates api](https://www.exchangeratesapi.io/)

## References

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

React hooks [React hooks](https://reactjs.org/docs/hooks-intro.html).

To learn React, check out the [React documentation](https://reactjs.org/).

Happy coding:-)