Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rafaelcamargo/woblast-web
An experimental project to get started with HG Brasil Finance API and ChartJS
https://github.com/rafaelcamargo/woblast-web
Last synced: 10 days ago
JSON representation
An experimental project to get started with HG Brasil Finance API and ChartJS
- Host: GitHub
- URL: https://github.com/rafaelcamargo/woblast-web
- Owner: rafaelcamargo
- Created: 2019-10-08T14:44:57.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T12:57:20.000Z (almost 2 years ago)
- Last Synced: 2023-02-27T12:32:51.207Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://woblast-app.web.app/
- Size: 557 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Woblast
> An experimental project to get started with HG Brasil Finance API and ChartJS[![CircleCI](https://circleci.com/gh/rafaelcamargo/woblast-web/tree/master.svg?style=svg)](https://circleci.com/gh/rafaelcamargo/woblast-web/tree/master)
[![Coverage Status](https://coveralls.io/repos/github/rafaelcamargo/woblast-web/badge.svg)](https://coveralls.io/github/rafaelcamargo/woblast-web)## Contributing
1. Install [Node](https://nodejs.org/en/). Download the "Recommend for Most Users" version.
2. Clone the repo:
``` bash
git clone [email protected]:rafaelcamargo/woblast-web.git
```3. Go to the project directory
``` bash
cd woblast-web
```4. Install the project dependencies
``` bash
npm install
```5. If you want just to build the project, run:
``` bash
npm run build
```6. If you want to serve the application, run:
``` bash
npm run start
```7. In order to consume API locally, use another terminal tab to run:
``` bash
npm run api
```The app will be running on `http://localhost:9000`.
## Tests
1. Ensure that all code that you have added is covered with unit tests:
``` bash
npm run test
```2. You can optionally generate coverage report after running tests:
``` bash
npm run test -- --coverage
```