https://github.com/mxjp/rvx
A signal based rendering framework
https://github.com/mxjp/rvx
declarative dependency-injection javascript reactive signals ui
Last synced: 4 days ago
JSON representation
A signal based rendering framework
- Host: GitHub
- URL: https://github.com/mxjp/rvx
- Owner: mxjp
- License: mit
- Created: 2023-11-12T23:30:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-29T18:41:46.000Z (6 months ago)
- Last Synced: 2024-10-29T20:40:30.661Z (6 months ago)
- Topics: declarative, dependency-injection, javascript, reactive, signals, ui
- Language: TypeScript
- Homepage: https://mxjp.github.io/rvx/
- Size: 876 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README

# rvx!
This is a signal based frontend framework.```jsx
import { $, mount } from "rvx";const count = $(0);
mount(
document.body,
{ count.value++ }}>
Clicked {count} times
);
```## [Documentation](https://mxjp.github.io/rvx/)