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

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

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