The application is a single-page react application that serves as a tracking panel where an individual can track crypto coins over time.
Before you begin, ensure you have the following installed:
- Node.js (npm will be installed along with Node.js)
The application's purpose is to serve as a tracker for users, helping an individual tracking the currency of crypto currencies. Each crypto currency's value is presented in USD.
The users are able to browse through a long list of coins, save them and further investigate them. The data chosen by the user is persistent using the browser's local memory called localStorage. This makes the data being persistent over sessions.
After downloading the repository, install the dependencies using npm install --force The force option has to be used, because of one of the dependencies - the one that brings the crypto coin icons.
To start the development server, run the following command: npm start. By default, the server will run at http://localhost:3000.