Skip to content

A sample financial app for keeping track of the cryptocurrency market.

Notifications You must be signed in to change notification settings

Asatelit/cryptocurrency-tracking-app

Repository files navigation

Cryptocurrency Tracking App

A sample financial app for keeping track of the cryptocurrency market built on top of React, Redux, Wijmo FlexGrid, Wijmo FlexChart and Material UI. See live demo here: asatelit.com/projects/cryptocurrency-tracking-app.

Getting Started

Requirements

  • Mac OS X, Windows, or Linux
  • Node.js v8 or newer
  • npm v5 or newer (included in node.js installation)
  • Text editor or IDE pre-configured with React/JSX/Flow/ESlint

Directory Layout

.
├── /build/                         # The folder for compiled output
├── /node_modules/                  # 3rd-party libraries and utilities
├── /src/                           # The source code of the application
│   ├── /actions/                   # Action creators that allow to trigger a dispatch to stores
│   ├── /components/                # React components
│   ├── /constants/                 # Constants (action types etc.)
│   ├── /reducers/                  # Reducers contain the application state and logic
│   ├── /routes/                    # Page/screen components along with the routing information
│   ├── /store/                     # Holds application state
│   ├── /utils/                     # Utility classes and functions
│   ├── /index.js                   # Startup script
│   └── /registerServiceWorker.js   # Lets the app load faster on subsequent visits in production
├── /public/                        # Static files which are copied into the /build/ folder
└── package.json                    # The list of 3rd party libraries and utilities

How to Install

$ npm install

This will install both run-time project dependencies and developer tools listed in package.json file.

How to Start

$ npm start

This command will build the app from the source files (/src) into the output /build folder. As soon as the initial build completes, it will start a light-weight developer server.

Now you can open your web app in a browser and start hacking. Whenever you modify any of the source files inside the /src folder, the module bundler (Webpack) will recompile the app on the fly and refresh all the connected browsers.

Note that the npm start command launches the app in development mode, the compiled output files are not optimized and minimized in this case. For more information, check out the additional documentation here.

How to Build

If you need just to build the app (without running a dev server), simply run:

$ npm run build

This command builds the app for production to the build folder. 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. By default, it also includes a service worker so that your app loads from local cache on future visits.

Your app is ready to be deployed.

References

This project was bootstrapped with Create React App and powered by Wijmo components:

  • FlexGrid - Fast, high-performance grid.
  • FlexChart - A Flexible JavaScript Chart Control.

Included dependencies:

  • classnames - utility for conditionally joining classNames together.
  • humps - Underscore-to-camelCase converter for strings and object keys.
  • material-ui-icons - provides the Google Material icons packaged as a set of React components.
  • material-ui - components that implement Google's Material Design.
  • prop-types - runtime type checking for React props and similar objects.
  • react-dom - serves as the entry point of the DOM-related rendering paths.
  • react-redux - complete state management.
  • react-router-dom - DOM bindings for React Router.
  • react-scripts - create React apps with no build configuration.
  • react - library for building user interfaces.
  • redux-thunk - async operations.
  • wijmo - Enterprise UI controls.

About

A sample financial app for keeping track of the cryptocurrency market.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published