sse-hooks 1.2.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,48 +1,171 @@
1
+
2
+
3
+ ### 📡 Sensors
4
+ - [`useAudioRecorder`](https://sse-hooks.vercel.app/docs/hooks/use-audio-recorder) — A comprehensive hook for audio recording with real-time analysis using getUserMedia, MediaRecorder, and Web Audio APIs.
5
+ - [`useHover`](https://sse-hooks.vercel.app/docs/hooks/use-hover) — Custom hook that tracks whether a DOM element is being hovered over.
6
+ - [`useMediaQuery`](https://sse-hooks.vercel.app/docs/hooks/use-media-query) — Custom hook that tracks the state of a media query using the [`Match Media API`](https://developer.
7
+ - [`useMediaSession`](https://sse-hooks.vercel.app/docs/hooks/use-media-session) — Custom hook that interacts with the [Media Session API](https://developer.
8
+ - [`useResizeObserver`](https://sse-hooks.vercel.app/docs/hooks/use-resize-observer) — Custom hook that observes the size of an element using the [`ResizeObserver API`](https://developer.
9
+ - [`useScreenShare`](https://sse-hooks.vercel.app/docs/hooks/use-screen-share) — Custom hook that captures the user's screen or specific application window.
10
+ - [`useUserMedia`](https://sse-hooks.vercel.app/docs/hooks/use-user-media) — Custom hook that captures audio and video from the user's device.
11
+
12
+ ### 💾 State
13
+ - [`useBoolean`](https://sse-hooks.vercel.app/docs/hooks/use-boolean) — Custom hook that handles boolean state with useful utility functions.
14
+ - [`useCounter`](https://sse-hooks.vercel.app/docs/hooks/use-counter) — Custom hook that manages a counter with increment, decrement, reset, and setCount functionalities.
15
+ - [`useMap`](https://sse-hooks.vercel.app/docs/hooks/use-map) — Custom hook that manages a key-value [`Map`](https://developer.
16
+ - [`useStep`](https://sse-hooks.vercel.app/docs/hooks/use-step) — Custom hook that manages and navigates between steps in a multi-step process.
17
+ - [`useToggle`](https://sse-hooks.vercel.app/docs/hooks/use-toggle) — Custom hook that manages a boolean toggle state in React components.
18
+
19
+ ### ⚡ Side Effects
20
+ - [`useCountdown`](https://sse-hooks.vercel.app/docs/hooks/use-countdown) — Custom hook that manages countdown.
21
+ - [`useDebounceCallback`](https://sse-hooks.vercel.app/docs/hooks/use-debounce-callback) — Custom hook that creates a debounced version of a callback function.
22
+ - [`useDebounceValue`](https://sse-hooks.vercel.app/docs/hooks/use-debounce-value) — Custom hook that returns a debounced version of the provided value, along with a function to update it.
23
+ - [`useInterval`](https://sse-hooks.vercel.app/docs/hooks/use-interval) — Custom hook that creates an interval that invokes a callback function at a specified delay using the [`setInterval API`](https://developer.
24
+ - [`useTimeout`](https://sse-hooks.vercel.app/docs/hooks/use-timeout) — Custom hook that handles timeouts in React components using the [`setTimeout API`](https://developer.
25
+
26
+ ### 🔄 LifeCycle
27
+ - [`useIsClient`](https://sse-hooks.vercel.app/docs/hooks/use-is-client) — Custom hook that determines if the code is running on the client side (in the browser).
28
+ - [`useIsMounted`](https://sse-hooks.vercel.app/docs/hooks/use-is-mounted) — Custom hook that determines if the component is currently mounted.
29
+ - [`useUnmount`](https://sse-hooks.vercel.app/docs/hooks/use-unmount) — Custom hook that runs a cleanup function when the component is unmounted.
30
+
31
+ ### 🎨 DOM & UI
32
+ - [`useClickAnyWhere`](https://sse-hooks.vercel.app/docs/hooks/use-click-any-where) — Custom hook that handles click events anywhere on the document.
33
+ - [`useClickAway`](https://sse-hooks.vercel.app/docs/hooks/use-click-away) — Custom hook that triggers a callback when a user clicks outside the referenced element.
34
+ - [`useDarkMode`](https://sse-hooks.vercel.app/docs/hooks/use-dark-mode) — Custom hook that returns the current state of the dark mode.
35
+ - [`useDocumentTitle`](https://sse-hooks.vercel.app/docs/hooks/use-document-title) — Custom hook that sets the document title.
36
+ - [`useScript`](https://sse-hooks.vercel.app/docs/hooks/use-script) — Custom hook that dynamically loads scripts and tracking their loading status.
37
+ - [`useScrollLock`](https://sse-hooks.vercel.app/docs/hooks/use-scroll-lock) — A custom hook that locks and unlocks scroll.
38
+ - [`useTernaryDarkMode`](https://sse-hooks.vercel.app/docs/hooks/use-ternary-dark-mode) — Custom hook that manages ternary (system, dark, light) dark mode with local storage support.
39
+
40
+ ### 📦 Storage
41
+ - [`useIndexedDB`](https://sse-hooks.vercel.app/docs/hooks/use-indexed-db) — Custom hook that provides an interface to the [`IndexedDB API`](https://developer.
42
+ - [`useLocalStorage`](https://sse-hooks.vercel.app/docs/hooks/use-local-storage) — Custom hook that uses the [`localStorage API`](https://developer.
43
+ - [`useSessionStorage`](https://sse-hooks.vercel.app/docs/hooks/use-session-storage) — Custom hook that uses the [`sessionStorage API`](https://developer.
44
+
45
+ ### 🌐 Network
46
+ - [`useFetch`](https://sse-hooks.vercel.app/docs/hooks/use-fetch) — Custom hook that provides a wrapper around the native [`fetch API`](https://developer.
47
+
48
+ ### 📦 Uncategorized
49
+ - [`useCookie`](https://sse-hooks.vercel.app/docs/hooks/use-cookie) — Custom hook that manages state synchronized with a browser [`cookie`](https://developer.
50
+ - [`useCopyToClipboard`](https://sse-hooks.vercel.app/docs/hooks/use-copy-to-clipboard) — Custom hook that copies text to the clipboard using the [`Clipboard API`](https://developer.
51
+ - [`useEventCallback`](https://sse-hooks.vercel.app/docs/hooks/use-event-callback) — Custom hook that creates a memoized event callback.
52
+ - [`useEventListener`](https://sse-hooks.vercel.app/docs/hooks/use-event-listener) — .
53
+ - [`useForkRef`](https://sse-hooks.vercel.app/docs/hooks/use-fork-ref) — Merges refs into a single memoized callback ref or `null`.
54
+ - [`useIntersectionObserver`](https://sse-hooks.vercel.app/docs/hooks/use-intersection-observer) — Custom hook that tracks the intersection of a DOM element with its containing element or the viewport using the [`Intersection Observer API`](https://developer.
55
+ - [`useReadLocalStorage`](https://sse-hooks.vercel.app/docs/hooks/use-read-local-storage) — .
56
+ - [`useScreen`](https://sse-hooks.vercel.app/docs/hooks/use-screen) — .
57
+ - [`useWindowSize`](https://sse-hooks.vercel.app/docs/hooks/use-window-size) — .
58
+
59
+
60
+ - [`useAudioRecorder`](/react-hook/use-audio-recorder) — A comprehensive hook for audio recording with real-time analysis using getUserMedia, MediaRecorder, and Web Audio APIs.
61
+ - [`useBoolean`](/react-hook/use-boolean) — Custom hook that handles boolean state with useful utility functions.
62
+ - [`useClickAnyWhere`](/react-hook/use-click-any-where) — Custom hook that handles click events anywhere on the document.
63
+ - [`useClickAway`](/react-hook/use-click-away) — Custom hook that triggers a callback when a user clicks outside the referenced element.
64
+ - [`useCookie`](/react-hook/use-cookie) — Custom hook that manages state synchronized with a browser [`cookie`](https://developer.
65
+ - [`useCopyToClipboard`](/react-hook/use-copy-to-clipboard) — Custom hook that copies text to the clipboard using the [`Clipboard API`](https://developer.
66
+ - [`useCountdown`](/react-hook/use-countdown) — Custom hook that manages countdown.
67
+ - [`useCounter`](/react-hook/use-counter) — Custom hook that manages a counter with increment, decrement, reset, and setCount functionalities.
68
+ - [`useDarkMode`](/react-hook/use-dark-mode) — Custom hook that returns the current state of the dark mode.
69
+ - [`useDebounceCallback`](/react-hook/use-debounce-callback) — Custom hook that creates a debounced version of a callback function.
70
+ - [`useDebounceValue`](/react-hook/use-debounce-value) — Custom hook that returns a debounced version of the provided value, along with a function to update it.
71
+ - [`useDocumentTitle`](/react-hook/use-document-title) — Custom hook that sets the document title.
72
+ - [`useEventCallback`](/react-hook/use-event-callback) — Custom hook that creates a memoized event callback.
73
+ - [`useEventListener`](/react-hook/use-event-listener) — .
74
+ - [`useFetch`](/react-hook/use-fetch) — Custom hook that provides a wrapper around the native [`fetch API`](https://developer.
75
+ - [`useForkRef`](/react-hook/use-fork-ref) — Merges refs into a single memoized callback ref or `null`.
76
+ - [`useHover`](/react-hook/use-hover) — Custom hook that tracks whether a DOM element is being hovered over.
77
+ - [`useIndexedDB`](/react-hook/use-indexed-db) — Custom hook that provides an interface to the [`IndexedDB API`](https://developer.
78
+ - [`useIntersectionObserver`](/react-hook/use-intersection-observer) — Custom hook that tracks the intersection of a DOM element with its containing element or the viewport using the [`Intersection Observer API`](https://developer.
79
+ - [`useInterval`](/react-hook/use-interval) — Custom hook that creates an interval that invokes a callback function at a specified delay using the [`setInterval API`](https://developer.
80
+ - [`useIsClient`](/react-hook/use-is-client) — Custom hook that determines if the code is running on the client side (in the browser).
81
+ - [`useIsMounted`](/react-hook/use-is-mounted) — Custom hook that determines if the component is currently mounted.
82
+ - [`useLocalStorage`](/react-hook/use-local-storage) — Custom hook that uses the [`localStorage API`](https://developer.
83
+ - [`useMap`](/react-hook/use-map) — Custom hook that manages a key-value [`Map`](https://developer.
84
+ - [`useMediaQuery`](/react-hook/use-media-query) — Custom hook that tracks the state of a media query using the [`Match Media API`](https://developer.
85
+ - [`useMediaSession`](/react-hook/use-media-session) — Custom hook that interacts with the [Media Session API](https://developer.
86
+ - [`useReadLocalStorage`](/react-hook/use-read-local-storage) — .
87
+ - [`useResizeObserver`](/react-hook/use-resize-observer) — Custom hook that observes the size of an element using the [`ResizeObserver API`](https://developer.
88
+ - [`useScreen`](/react-hook/use-screen) — .
89
+ - [`useScreenShare`](/react-hook/use-screen-share) — Custom hook that captures the user's screen or specific application window.
90
+ - [`useScript`](/react-hook/use-script) — Custom hook that dynamically loads scripts and tracking their loading status.
91
+ - [`useScrollLock`](/react-hook/use-scroll-lock) — A custom hook that locks and unlocks scroll.
92
+ - [`useSessionStorage`](/react-hook/use-session-storage) — Custom hook that uses the [`sessionStorage API`](https://developer.
93
+ - [`useStep`](/react-hook/use-step) — Custom hook that manages and navigates between steps in a multi-step process.
94
+ - [`useTernaryDarkMode`](/react-hook/use-ternary-dark-mode) — Custom hook that manages ternary (system, dark, light) dark mode with local storage support.
95
+ - [`useTimeout`](/react-hook/use-timeout) — Custom hook that handles timeouts in React components using the [`setTimeout API`](https://developer.
96
+ - [`useToggle`](/react-hook/use-toggle) — Custom hook that manages a boolean toggle state in React components.
97
+ - [`useUnmount`](/react-hook/use-unmount) — Custom hook that runs a cleanup function when the component is unmounted.
98
+ - [`useUserMedia`](/react-hook/use-user-media) — Custom hook that captures audio and video from the user's device.
99
+ - [`useWindowSize`](/react-hook/use-window-size) — .
1
100
  ## 🪝 Available Hooks
2
101
 
3
102
  <!-- HOOKS:START -->
4
103
 
5
- - [`useAudioRecorder`](/docs/use-audio-recorder) — A comprehensive hook for audio recording with real-time analysis using getUserMedia, MediaRecorder, and Web Audio APIs
6
- - [`useBoolean`](/docs/use-boolean) — handles boolean state with useful utility functions.
7
- - [`useClickAnyWhere`](/docs/use-click-any-where) — handles click events anywhere on the document.
8
- - [`useClickAway`](/docs/use-click-away) — triggers a callback when a user clicks outside the referenced element.
9
- It handles portal elements, scrollbar clicks, and touch interactions intelligently.
10
- - [`useCookie`](/docs/use-cookie) — manages state synchronized with a browser [cookie](https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies).
11
- It handles serialization, prefixes, updates across tabs, and custom event synchronization.
12
- - [`useCopyToClipboard`](/docs/use-copy-to-clipboard) — copies text to the clipboard using the [Clipboard API](https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API).
13
- - [`useCountdown`](/docs/use-countdown) — manages countdown.
14
- - [`useCounter`](/docs/use-counter) — manages a counter with increment, decrement, reset, and setCount functionalities.
15
- - [`useDarkMode`](/docs/use-dark-mode) — returns the current state of the dark mode.
16
- - [`useDebounceCallback`](/docs/use-debounce-callback) — creates a debounced version of a callback function.
17
- - [`useDebounceValue`](/docs/use-debounce-value) — returns a debounced version of the provided value, along with a function to update it.
18
- - [`useDocumentTitle`](/docs/use-document-title) — sets the document title.
19
- - [`useEventCallback`](/docs/use-event-callback) — creates a memoized event callback.
20
- - [`useEventListener`](/docs/use-event-listener) —
21
- - [`useFetch`](/docs/use-fetch) — provides a wrapper around the native [fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) to handle HTTP requests with state management, abort capability, and TypeScript support.
22
- - [`useForkRef`](/docs/use-fork-ref) — Merges refs into a single memoized callback ref or null.
23
- - [`useHover`](/docs/use-hover) tracks whether a DOM element is being hovered over.
24
- - [`useIndexedDB`](/docs/use-indexed-d-b) — provides an interface to the [IndexedDB API](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API) for client-side storage of significant amounts of structured data.
25
- - [`useIntersectionObserver`](/docs/use-intersection-observer) — tracks the intersection of a DOM element with its containing element or the viewport using the [Intersection Observer API](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API).
26
- - [`useInterval`](/docs/use-interval) — creates an interval that invokes a callback function at a specified delay using the [setInterval API](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/setInterval).
27
- - [`useIsClient`](/docs/use-is-client) — determines if the code is running on the client side (in the browser).
28
- - [`useIsMounted`](/docs/use-is-mounted) — determines if the component is currently mounted.
29
- - [`useLocalStorage`](/docs/use-local-storage) — uses the [localStorage API](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage) to persist state across page reloads.
30
- - [`useMap`](/docs/use-map) — manages a key-value [Map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) state with setter actions.
31
- - [`useMediaQuery`](/docs/use-media-query) — tracks the state of a media query using the [Match Media API](https://developer.mozilla.org/en-US/docs/Web/API/Window/matchMedia).
32
- - [`useMediaSession`](/docs/use-media-session) — interacts with the [Media Session API](https://developer.mozilla.org/en-US/docs/Web/API/Media_Session_API).
33
- It allows you to customize media notifications and handle media control events (like play, pause, next track) from the system's notification area or lock screen.
34
- - [`useReadLocalStorage`](/docs/use-read-local-storage) —
35
- - [`useResizeObserver`](/docs/use-resize-observer) observes the size of an element using the [ResizeObserver API](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver).
36
- - [`useScreen`](/docs/use-screen) —
37
- - [`useScript`](/docs/use-script) — dynamically loads scripts and tracking their loading status.
38
- - [`useScrollLock`](/docs/use-scroll-lock) — A custom hook that locks and unlocks scroll.
39
- - [`useSessionStorage`](/docs/use-session-storage) — uses the [sessionStorage API](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage) to persist state across page reloads.
40
- - [`useStep`](/docs/use-step) — manages and navigates between steps in a multi-step process.
41
- - [`useTernaryDarkMode`](/docs/use-ternary-dark-mode) — manages ternary (system, dark, light) dark mode with local storage support.
42
- - [`useTimeout`](/docs/use-timeout) — handles timeouts in React components using the [setTimeout API](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/setTimeout).
43
- - [`useToggle`](/docs/use-toggle) — manages a boolean toggle state in React components.
44
- - [`useUnmount`](/docs/use-unmount) — runs a cleanup function when the component is unmounted.
45
- - [`useUserMedia`](/docs/use-user-media) — captures audio and video from the user's device.
46
- It handles permission errors, stream management, and cleanup automatically.
47
- - [`useWindowSize`](/docs/use-window-size) —
104
+ ### 📡 Sensors
105
+ - [`useAudioRecorder`](https://sse-hooks.vercel.app/docs/hooks/use-audio-recorder) — A comprehensive hook for audio recording with real-time analysis using getUserMedia, MediaRecorder, and Web Audio APIs.
106
+ - [`useConferenceSystem`](https://sse-hooks.vercel.app/docs/hooks/use-conference-system) — A comprehensive hook for managing video conferencing state, including camera access, screen sharing, network monitoring, and automatic media quality adjustment.
107
+ - [`useHover`](https://sse-hooks.vercel.app/docs/hooks/use-hover) — Custom hook that tracks whether a DOM element is being hovered over.
108
+ - [`useMediaQuery`](https://sse-hooks.vercel.app/docs/hooks/use-media-query) Custom hook that tracks the state of a media query using the [`Match Media API`](https://developer.
109
+ - [`useMediaSession`](https://sse-hooks.vercel.app/docs/hooks/use-media-session) — Custom hook that interacts with the [Media Session API](https://developer.
110
+ - [`useResizeObserver`](https://sse-hooks.vercel.app/docs/hooks/use-resize-observer) Custom hook that observes the size of an element using the [`ResizeObserver API`](https://developer.
111
+ - [`useScreenShare`](https://sse-hooks.vercel.app/docs/hooks/use-screen-share) — Custom hook that captures the user's screen or specific application window.
112
+ - [`useUserMedia`](https://sse-hooks.vercel.app/docs/hooks/use-user-media) — Custom hook that captures audio and video from the user's device.
113
+
114
+ ### 💾 State
115
+ - [`useBoolean`](https://sse-hooks.vercel.app/docs/hooks/use-boolean) — Custom hook that handles boolean state with useful utility functions.
116
+ - [`useCounter`](https://sse-hooks.vercel.app/docs/hooks/use-counter) — Custom hook that manages a counter with increment, decrement, reset, and setCount functionalities.
117
+ - [`useMap`](https://sse-hooks.vercel.app/docs/hooks/use-map) — Custom hook that manages a key-value [`Map`](https://developer.
118
+ - [`useRoleGuard`](https://sse-hooks.vercel.app/docs/hooks/use-role-guard) — Custom hook for Role-Based Access Control (RBAC).
119
+ - [`useStep`](https://sse-hooks.vercel.app/docs/hooks/use-step) — Custom hook that manages and navigates between steps in a multi-step process.
120
+ - [`useToggle`](https://sse-hooks.vercel.app/docs/hooks/use-toggle) Custom hook that manages a boolean toggle state in React components.
121
+
122
+ ### Side Effects
123
+ - [`useCountdown`](https://sse-hooks.vercel.app/docs/hooks/use-countdown) Custom hook that manages countdown.
124
+ - [`useDebounceCallback`](https://sse-hooks.vercel.app/docs/hooks/use-debounce-callback) — Custom hook that creates a debounced version of a callback function.
125
+ - [`useDebounceValue`](https://sse-hooks.vercel.app/docs/hooks/use-debounce-value) — Custom hook that returns a debounced version of the provided value, along with a function to update it.
126
+ - [`useInterval`](https://sse-hooks.vercel.app/docs/hooks/use-interval) — Custom hook that creates an interval that invokes a callback function at a specified delay using the [`setInterval API`](https://developer.
127
+ - [`useTimeout`](https://sse-hooks.vercel.app/docs/hooks/use-timeout) — Custom hook that handles timeouts in React components using the [`setTimeout API`](https://developer.
128
+
129
+ ### 🔄 LifeCycle
130
+ - [`useIsClient`](https://sse-hooks.vercel.app/docs/hooks/use-is-client) — Custom hook that determines if the code is running on the client side (in the browser).
131
+ - [`useIsMounted`](https://sse-hooks.vercel.app/docs/hooks/use-is-mounted) — Custom hook that determines if the component is currently mounted.
132
+ - [`useUnmount`](https://sse-hooks.vercel.app/docs/hooks/use-unmount) Custom hook that runs a cleanup function when the component is unmounted.
133
+
134
+ ### 🎨 DOM & UI
135
+ - [`useClickAnyWhere`](https://sse-hooks.vercel.app/docs/hooks/use-click-any-where) — Custom hook that handles click events anywhere on the document.
136
+ - [`useClickAway`](https://sse-hooks.vercel.app/docs/hooks/use-click-away) — Custom hook that triggers a callback when a user clicks outside the referenced element.
137
+ - [`useDarkMode`](https://sse-hooks.vercel.app/docs/hooks/use-dark-mode) — Custom hook that returns the current state of the dark mode.
138
+ - [`useDocumentTitle`](https://sse-hooks.vercel.app/docs/hooks/use-document-title) — Custom hook that sets the document title.
139
+ - [`useForkRef`](https://sse-hooks.vercel.app/docs/hooks/use-fork-ref) — Merges refs into a single memoized callback ref or `null`.
140
+ - [`useScript`](https://sse-hooks.vercel.app/docs/hooks/use-script) — Custom hook that dynamically loads scripts and tracking their loading status.
141
+ - [`useScrollLock`](https://sse-hooks.vercel.app/docs/hooks/use-scroll-lock) — A custom hook that locks and unlocks scroll.
142
+ - [`useTernaryDarkMode`](https://sse-hooks.vercel.app/docs/hooks/use-ternary-dark-mode) — Custom hook that manages ternary (system, dark, light) dark mode with local storage support.
143
+
144
+ ### 📦 Storage
145
+ - [`useCookie`](https://sse-hooks.vercel.app/docs/hooks/use-cookie) Custom hook that manages state synchronized with a browser [`cookie`](https://developer.
146
+ - [`useIndexedDB`](https://sse-hooks.vercel.app/docs/hooks/use-indexed-db) — Custom hook that provides an interface to the [`IndexedDB API`](https://developer.
147
+ - [`useLocalStorage`](https://sse-hooks.vercel.app/docs/hooks/use-local-storage) — Custom hook that uses the [`localStorage API`](https://developer.
148
+ - [`useSessionStorage`](https://sse-hooks.vercel.app/docs/hooks/use-session-storage) — Custom hook that uses the [`sessionStorage API`](https://developer.
149
+
150
+ ### 🌐 Network
151
+ - [`useFetch`](https://sse-hooks.vercel.app/docs/hooks/use-fetch) — Custom hook that provides a wrapper around the native [`fetch API`](https://developer.
152
+ - [`useNetworkInformation`](https://sse-hooks.vercel.app/docs/hooks/use-network-information) — Custom hook that tracks the device's network connection status and details (speed, type)
153
+ using the Network Information API.
154
+
155
+ ### 🛠️ Utilities
156
+ - [`useCopyToClipboard`](https://sse-hooks.vercel.app/docs/hooks/use-copy-to-clipboard) — Custom hook that copies text to the clipboard using the [`Clipboard API`](https://developer.
157
+ - [`useEventCallback`](https://sse-hooks.vercel.app/docs/hooks/use-event-callback) — Custom hook that creates a memoized event callback.
158
+ - [`useKbd`](https://sse-hooks.vercel.app/docs/hooks/use-kbd) — Custom hook that detects the operating system (Mac vs.
159
+ - [`useMediaQuality`](https://sse-hooks.vercel.app/docs/hooks/use-media-quality) — Custom hook to manage video stream quality by applying constraints (resolution and frame rate)
160
+ to a MediaStream track.
161
+ - [`useSSR`](https://sse-hooks.vercel.app/docs/hooks/use-ssr) — Custom hook that detects the current environment (Browser, Server, or Native)
162
+ and capability support (Workers, EventListeners).
163
+ - [`useSymbol`](https://sse-hooks.vercel.app/docs/hooks/use-symbol) — Custom hook for managing ES6 Symbols.
164
+
165
+ ### 📦 Uncategorized
166
+ - [`useEventListener`](https://sse-hooks.vercel.app/docs/hooks/use-event-listener) — .
167
+ - [`useIntersectionObserver`](https://sse-hooks.vercel.app/docs/hooks/use-intersection-observer) — Custom hook that tracks the intersection of a DOM element with its containing element or the viewport using the [`Intersection Observer API`](https://developer.
168
+ - [`useReadLocalStorage`](https://sse-hooks.vercel.app/docs/hooks/use-read-local-storage) — .
169
+ - [`useScreen`](https://sse-hooks.vercel.app/docs/hooks/use-screen) — .
170
+ - [`useWindowSize`](https://sse-hooks.vercel.app/docs/hooks/use-window-size) — .
48
171
  <!-- HOOKS:END -->