Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/astro-reactive/astro-reactive
Let your data build your UI, with Astro components
https://github.com/astro-reactive/astro-reactive
astro-component reactive-forms
Last synced: 9 days ago
JSON representation
Let your data build your UI, with Astro components
- Host: GitHub
- URL: https://github.com/astro-reactive/astro-reactive
- Owner: astro-reactive
- License: mit
- Created: 2022-10-01T14:00:27.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-07T15:04:32.000Z (11 months ago)
- Last Synced: 2024-10-01T17:18:11.659Z (about 1 month ago)
- Topics: astro-component, reactive-forms
- Language: Astro
- Homepage: https://astro-reactive.js.org
- Size: 3.58 MB
- Stars: 81
- Watchers: 3
- Forks: 43
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
> [!WARNING]
> *As of now we still are in an exploratory phase and the library is not ready for production. We appreciate the interest. We look forward to your feedback and welcome all kinds of contribution. :)*
Astro Reactive Library
Server-Side Rendered, Dynamic Components
Let your data build your UI with Astro
| Package | Release notes | Description |
| ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -------------------------------------------------------- |
| [form](https://github.com/astro-reactive/astro-reactive/blob/main/packages/form/README.md) | [![npm](https://img.shields.io/npm/v/@astro-reactive/form)](./packages/form/CHANGELOG.md) | a dynamic form which can be modified programmatically |
| [validator](https://github.com/astro-reactive/astro-reactive/blob/main/packages/validator/README.md) | [![npm](https://img.shields.io/npm/v/@astro-reactive/validator)](./packages/validator/CHANGELOG.md) | validators for editable fields |
| data-grid | 🛠 | a dynamic data grid of values |
| themes | 🛠 | easy-to-use, accessible, consistent cross-browser styles |
| viz | 🛠 | data visualization that emits and responds to events |# Running locally
We mainly use the `demo` app to see changes we make on the packages. Do the following to start hacking:
1. Fork the project then clone to your computer
```
git clone [email protected]:/astro-reactive.git
```2. Go into the project directory
```
cd astro-reactive
```3. Install the node dependencies
```
npm i
```4. Run the demo application
```
npm start
```5. Open the demo application on your browser. Browse to the address:
```
https://localhost:3000
```6. To run the tests:
```
npm test
```## Other apps
We also maintain the docs website and the project landing page in this repository. Run the following to start the dev servers:
```
npm run docs
``````
npm run landing-page
```# Contributors
This project is only possible because of the support and contribution of our community ❤️
👉 _[Join our contributors!](https://github.com/astro-reactive/astro-reactive/blob/main/CONTRIBUTING.md)_