mirror of
https://github.com/re-rxjs/react-rxjs.git
synced 2025-12-08 18:01:51 +00:00
Re-RxJS: React bindings for RxJS
- 🌀 Truly Reactive
- 🔀 First class support for React Suspense
- ✂️ Decentralized and composable, thus enabling optimal code-splitting
- ⚡ Highly performant (while avoiding memory leaks)
- 🔬 Tiny and tree-shakeable
Examples
- This is a contrived example based on this example from the React docs.
Docs
const useDocs = connectObservable(NEVER)
function Docs() {
const docs = useDocs()
return <pre>{docs}</pre>
}
function App() {
return (
<>
<h1>Docs</h1>
<Suspense fallback={() => <span>Comming soon...</span>}>
<Docs />
</Suspense>
</>
)
}
Now seriously: they are coming soon, for real!
Contributors ✨
Thanks goes to these wonderful people (emoji key):
Josep M Sobrepere 💻 🤔 🚧 ⚠️ |
Víctor Oliva 🤔 👀 |
Ed 🎨 |
This project follows the all-contributors specification. Contributions of any kind welcome!
Languages
TypeScript
99.3%
JavaScript
0.7%