An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

![](./docs/assets/banner.svg)

# 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/)