https://github.com/eunchurn/components
UI Components mono repo
https://github.com/eunchurn/components
lerna lerna-monorepo npm-package react typescript windrose
Last synced: about 1 year ago
JSON representation
UI Components mono repo
- Host: GitHub
- URL: https://github.com/eunchurn/components
- Owner: eunchurn
- License: mit
- Created: 2021-04-18T17:41:20.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-07-18T04:40:56.000Z (about 1 year ago)
- Last Synced: 2025-07-18T08:15:42.462Z (about 1 year ago)
- Topics: lerna, lerna-monorepo, npm-package, react, typescript, windrose
- Language: TypeScript
- Homepage: https://stackblitz.com/edit/nextjs-react-windrose-chart
- Size: 8.66 MB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# React-Components Monorepo
[](https://github.com/eunchurn/components/actions/workflows/unit-test.yml) [](https://github.com/eunchurn/components/actions/workflows/npmpublish.yml) [](https://github.com/eunchurn/components/actions/workflows/codeql-analysis.yml) [](https://codecov.io/gh/eunchurn/components)
## Packages
### [`@eunchurn/react-windrose`](https://github.com/eunchurn/components/packages/1399456)
 [](https://badge.fury.io/js/@eunchurn%2Freact-windrose) [](https://badge.fury.io/gh/eunchurn%2Fcomponents) [](https://opensource.org/licenses/MIT)
- [D3js](https://d3js.org/) (Javascript library for manipulating documents based on data) implemented SVG rendering
- Inspired from [ssmaroju](https://bl.ocks.org/ssmaroju)'s [Wind Rose Plot](https://bl.ocks.org/ssmaroju/96af159c1872c2928a972c441bccaf50)
```
yarn install @eunchurn/react-windrose
```
### [`@eunchurn/windrose`](https://github.com/eunchurn/components/packages/1399469)
 [](https://badge.fury.io/js/@eunchurn%2Fwindrose) [](https://badge.fury.io/gh/eunchurn%2Fcomponents) [](https://opensource.org/licenses/MIT)
- INPUT: Professionals respond to survey of how much they use a K-12 core competancy in each subject
- OUTPUT: Interdisciplinarity Badge (ideally with mouseover tooltips). Wind-rose type graphic, displaying survey response magnitudes for each subject area core competency
```
yarn install @eunchurn/windrose
```
## Development
### lerna install
```
yarn install
yarn bootstrap
```
### CRA environment: `packages/app`
run React App
```
yarn start
```
### Package environment: `packages/{component_name}...`
Component build with watching
```
yarn watch
```
### Add deps.
```
yarn lerna:add {external_package_name} --scope={package-name}
```