https://github.com/47degrees/robeen
Robeen is the graphical companion for Hood JMH benchmarks
https://github.com/47degrees/robeen
charts d3js graph hood jmh jmh-benchmarks stenciljs web-component
Last synced: 7 months ago
JSON representation
Robeen is the graphical companion for Hood JMH benchmarks
- Host: GitHub
- URL: https://github.com/47degrees/robeen
- Owner: 47degrees
- License: apache-2.0
- Created: 2019-05-02T11:26:10.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-30T06:57:11.000Z (about 3 years ago)
- Last Synced: 2025-02-25T20:18:18.042Z (8 months ago)
- Topics: charts, d3js, graph, hood, jmh, jmh-benchmarks, stenciljs, web-component
- Language: TypeScript
- Size: 61.5 KB
- Stars: 1
- Watchers: 47
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
 [](https://npmjs.com/package/@47deg/robeen "View this project on npm")
# Robeen
The graphical companion for Hood JMH benchmarks.
## Preview

## Installation
### Load it from a CDN
- Put a script tag similar to this `` in the head of your index.html
- Then you can use the element anywhere in your template, JSX, html etc### Host your own instance
- Run `npm install @47deg/robeen --save`
- Put a script tag similar to this `` in the head of your index.html
- Then you can use the element anywhere in your template, JSX, html etc## Usage
Once loaded on your site, you can simply use it like this:
```html
```Please check that the URL is a valid endpoint where a JMH shaped data file can be fetched from.
## Contributing or modifying this web component
Robeen is built with Stencil, a compiler for building fast web apps using Web Components.
Stencil components are just Web Components, so they work in any major framework, or with no framework at all. To start playing with it, clone this repo to a new directory:
```bash
git clone https://github.com/47deg/robeen.git robeen
cd robeen
git remote rm origin
```and run:
```bash
npm install
npm start
```To build the component for production, run:
```bash
npm run build
```To run the unit tests for the components, run:
```bash
npm test
```Need help? Check out our docs [here](https://stenciljs.com/docs/my-first-component).