Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thiswallz/market-summary-live-data
a complete small project using Angular 5 / MD / Socket.IO / NodeJS / Bittrex
https://github.com/thiswallz/market-summary-live-data
angular material-design nodejs socket-io
Last synced: 28 days ago
JSON representation
a complete small project using Angular 5 / MD / Socket.IO / NodeJS / Bittrex
- Host: GitHub
- URL: https://github.com/thiswallz/market-summary-live-data
- Owner: thiswallz
- Created: 2018-05-02T15:47:58.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-02T16:27:38.000Z (almost 7 years ago)
- Last Synced: 2025-01-11T23:56:06.496Z (30 days ago)
- Topics: angular, material-design, nodejs, socket-io
- Language: TypeScript
- Size: 320 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MarketSummaries
### This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.7.4.
## Web App
### Grid and Livedata
![Alt text](img1.PNG?raw=true 'Grid and Livedata')
### Favorites Livedata
![Alt text](img2.PNG?raw=true 'Favorites')
## Proxy Server (Nginx) - Api rest at http://localhost:4000/
* Start Nginx with this configuration (In order to bypass CORS problems with the Bittrex API REST) i.e,
```sh
server {
listen 4000;
location /getmarketsummaries {
add_header Access-Control-Allow-Origin *;
proxy_pass https://bittrex.com/api/v1.1/public/getmarketsummaries;
}}
```* You can use other tool/server/extension to bypass bittrex, like an Chrome CORS extension, just remember change the URL in src/environments/environment.ts and src/environments/environment.prod.ts
## Socket server (NodeJS) - LiveData at http://localhost:3000/
```sh
cd server/
node server.js
```## Application Web (Angular using Material Design) - App at http://localhost:4001/
```sh
npm i
ng serve
```## Code scaffolding
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
## Build
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `-prod` flag for a production build.
## Running unit tests
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
## Running end-to-end tests
Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
## Further help
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).