
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@commander-lol/react-hooks
Advanced tools
A collection of commonly used utility hooks for React
npm install --save react-hooks
An enhanced version of React.useEffect that can run an asynchronous effect
with an AbortController for cancellation. The controller can be aborted manually,
and will be aborted when the dependencies of the effect change or the component
unmounts.
import React from 'react'
import { useDisclosure } from '@commander-lol/react-hooks'
export default function AsyncWatcher() {
const [value, setValue] = React.useState(null)
const [data, setData] = React.useState(null)
useAbortableEffect(async ctrl => {
if (value != null) {
const result = await fetch(`/my/api/${ value }`, {
signal: ctrl.signal,
})
// Alternatively, check if the controller has aborted for non-fetch effects
if (result.ok) {
setData(await result.json())
}
}
}, [value])
return (
<div>
<ValueSelector value={value} onChange={setValue} />
<DataDisplayer value={data} />
</div>
)
}
Encapsulated common 'toggle view' logic used by dialogs, sidebars, etc.
import React from 'react'
import { useDisclosure } from '@commander-lol/react-hooks'
import { Modal } from 'another-library'
export default function SimpleModal({ summary, description }) {
const state = useDisclosure()
return (
<>
<button onClick={state.onOpen}>{ summary }</button>
<Modal isOpen={state.isOpen} onClose={state.onClose}>
<p>{ description }</p>
</Modal>
</>
)
}
GPL-3.0+ © Commander-lol
FAQs
A collection of commonly used utility hooks for React
We found that @commander-lol/react-hooks demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.