Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ravid7000/shiny-spoon
https://github.com/ravid7000/shiny-spoon
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ravid7000/shiny-spoon
- Owner: ravid7000
- License: mit
- Created: 2019-12-05T13:08:28.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-02-10T20:28:50.000Z (almost 3 years ago)
- Last Synced: 2023-03-06T13:27:31.633Z (over 1 year ago)
- Language: JavaScript
- Size: 1.5 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Stock
## Demo
[See Demo](https://ravid7000.github.io/shiny-spoon/)## Setup
Clone this repo:
```
git clone https://github.com/ravid7000/shiny-spoon.git
```I'm using Create-React-App boilerplate
```
npm i
```Start local development server:
```
npm start
```## Director Structure
```
-- .env // environment file
-- src
|- Components // Global Components
|- Autocomplete // custom autocomplete component
|- StockDetails
|- StockGraph // Rechart configured component
|- Table
|- HiverStock // Home page component
|- utils
|- api.js // utils for all api
|- apiMiddleware.js // Custom middleware for Redux to handle api related actions
|- helper.js // Helper function to fromat data
|- stockReducer.js // Single reducer for Redux
|- store.js // Redux store
|- index.js // Enter file
|- styles.scss // global styles. I'm using reset.css
```
## Tech
React, Redux, Fetch, Recharts and Redux Custom middleware to handle api request.