Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
use-referee
Advanced tools
⚽ A collection of ref-related hooks.
import {
useConstant,
useLatest,
usePrevious,
useRefs
} from "https://cdn.skypack.dev/use-referee"
yarn add use-referee
npm install use-referee
useConstant
useConstant<T>(value: Lazy<T>) => T
Given a (lazy) variable, useConstant
will return it as is while never updating or mutating it on subsequent changes.
Import useConstant
.
import { useConstant } from "use-referee"
Declare a constant from an initial (lazy) value.
const id = useConstant(() => uuid())
// id: "123e4567-e89b-12d3-a456-426614174000"
useLatest
useLatest<T>(value: T): MutableRefObject<T>
Given a variable, useLatest
will return a ref which reflects its latest value—mutating itself on variable changes to do so.
Import useLatest
.
import { useLatest } from "use-referee"
Pass it a variable and get a mutating ref of its latest value in return.
const [state, setState] = useState(false)
const latest = useLatest(state)
// latest: { current: false }
Being a ref, latest
will always reflect the latest state
value even when omitted from dependency lists (e.g. []
).
setState(true)
useEffect(() => {
// latest: { current: true }
}, [])
usePrevious
usePrevious<T>(value: T) => T | undefined
Given a variable, usePrevious
will return its previous value or undefined
before an initial change has happened.
Import usePrevious
.
import { usePrevious } from "use-referee"
Pass it a variable and get its previous value in return.
const [state, setState] = useState(false)
const previous = usePrevious(state)
// previous: undefined
setState(true)
// previous: false
setState(false)
// previous: true
useRefs
useRefs<T>(...refs: Ref<T>[]) => RefCallback<T>
Given any number of refs, useRefs
will return a single callback ref that merges them all.
Import useRefs
.
import { useRefs } from "use-referee"
Pass it multiple refs and get a single ref in return.
const refs = useRefs(ref, forwardedRef)
return <div ref={refs} />
// ref: { current: <div /> }
// forwardedRef: { current: <div /> }
FAQs
A collection of ref-related hooks.
We found that use-referee 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.