Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tobua/epic-jsx
A better React.
https://github.com/tobua/epic-jsx
framework jsx react
Last synced: about 2 months ago
JSON representation
A better React.
- Host: GitHub
- URL: https://github.com/tobua/epic-jsx
- Owner: tobua
- Created: 2023-08-26T07:37:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-15T21:02:49.000Z (5 months ago)
- Last Synced: 2024-10-31T17:59:23.551Z (2 months ago)
- Topics: framework, jsx, react
- Language: TypeScript
- Homepage: https://tobua.github.io/epic-jsx/
- Size: 822 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# epic-jsx
React-compatible React rearchitecture based on [Didact](https://github.com/pomber/didact) by Rodrigo Pombo.
- โ๏ธ Extensible components
- ๐ Lifecycle access
- ๐ณ Navigatable tree
- ๐ฏ Optimizable Virtual DOM
- ๐๏ธ ES Modules
- ๐ TypeScript source and built-in types
- ๐งช Built-in testing framework# Usage
```jsx
import { render, useState } from 'epic-jsx'function App() {
const [count, setCount] = useState(1)
return setCount(count + 1)}>Increment
}render()
```