https://github.com/mxjp/rvx
A signal based frontend framework
https://github.com/mxjp/rvx
declarative javascript jsx low-level no-build reactive signals synchronous typescript web-components
Last synced: 12 days ago
JSON representation
A signal based frontend 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: 2025-04-27T12:07:07.000Z (22 days ago)
- Last Synced: 2025-04-27T13:20:39.079Z (22 days ago)
- Topics: declarative, javascript, jsx, low-level, no-build, reactive, signals, synchronous, typescript, web-components
- Language: TypeScript
- Homepage: https://mxjp.github.io/rvx/
- Size: 1.46 MB
- Stars: 5
- 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/)