rxdb-hooks
React hooks for integrating with RxDB (by cvara)
hooks
A high-quality & reliable React Hooks library. https://alibaba.github.io/hooks/ (by alibaba)
| rxdb-hooks | hooks | |
|---|---|---|
| 1 | 9 | |
| 150 | 14,960 | |
| 0.0% | 0.1% | |
| 0.0 | 8.1 | |
| almost 2 years ago | 23 days ago | |
| TypeScript | TypeScript | |
| MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
rxdb-hooks
Posts with mentions or reviews of rxdb-hooks.
We have used some of these posts to build our list of alternatives
and similar projects.
-
React Native Database
- There is an open source RxDB Hooks project: https://github.com/cvara/rxdb-hooks
hooks
Posts with mentions or reviews of hooks.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-12-23.
-
ESMate: An Anti-Fatigue Toolkit for JavaScript/TypeScript Development
Hooks: Includes the full power of ahooks (useRequest, usePagination).
-
A usePrevious Hook Disaster Story
import { useState } from 'react' // Following these issues I think this is the best way to implement usePrevious: // https://github.com/childrentime/reactuse/issues/115 // https://github.com/streamich/react-use/issues/2605 // https://github.com/alibaba/hooks/issues/2162 export function usePrevious(value: T): T | undefined { const [current, setCurrent] = useState(value) const [previous, setPrevious] = useState() if (value !== current) { setPrevious(current) setCurrent(value) } return previous }
-
Can't come to a conclusion if a component is pure or not. Please make me understand.
I re-read relevant documentation many times and am very aware of what purity means. I guess what's throwing me off is that every hook library uses such implementation of usePrevious: * react-hookz * ahooks * rooks
-
Alternative libs to migrate from React to Vue (or Vue to React)
ahooks
-
Common React Design patterns: Custom Hooks
react-use * βοΈ 29.6k / π½ 958k ahooks * βοΈ 9.1k / π½ 74k awesome-react-hooks * βοΈ 8.1k / π½ 74k usehooks-ts * βοΈ 1.6k / π½ 44k react-recipes * βοΈ 850 / π½ 1.2k react-hanger * βοΈ 1.8k / π½ 3.3k
-
ahooks 3.0 is coming! a high-quality and reliable React Hooks library!
Document: https://ahooks.js.orgβ
-
useLockFn δΈ useCallback ηη¨ι
ahooks εΊιι’ζδΈδΈͺ useLockFn
- Ahooks, React hooks library from Alibaba
What are some alternatives?
When comparing rxdb-hooks and hooks you can also consider the following projects:
RxDB - A fast, local first, reactive Database for JavaScript Applications https://rxdb.info/
react-use - React Hooks β π
formik - Build forms in React, without the tears π [Moved to: https://github.com/jaredpalmer/formik]
beautiful-react-hooks - π₯ A collection of beautiful and (hopefully) useful React hooks to speed-up your components and hooks development π₯
react-hook-form - π React Hooks for form state management and validation (Web + React Native)
use-between - Sharing state between React components