
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.
react-pair
Advanced tools
🖇️ Util to help with the paired hook pattern.
Install react-pair as a dependency:
pnpm add react-pair
# or
npm install react-pair
# or
yarn add react-pair
Import it and use it:
import { useState } from "react";
import { pair } from "react-pair";
const useCount = initialCount => {
const [count, setCount] = useState(initialCount);
return { onClick: () => setCount(count + 1), children: count };
};
const PairedCount = pair(useCount);
const Component = ({ array = [] }) => (
<ul>
{array.map(key => (
<PairedCount key={key}>
{usePairedCount => {
const props = usePairedCount(key);
return (
<li>
<button type="button" {...props} />
</li>
);
}}
</PairedCount>
))}
</ul>
);
Import react-pair using the npm: prefix, and use it directly:
import { useState } from "npm:react";
import { pair } from "npm:react-pair";
const useCount = initialCount => {
const [count, setCount] = useState(initialCount);
return { onClick: () => setCount(count + 1), children: count };
};
const PairedCount = pair(useCount);
const Component = ({ array = [] }) => (
<ul>
{array.map(key => (
<PairedCount key={key}>
{usePairedCount => {
const props = usePairedCount(key);
return (
<li>
<button type="button" {...props} />
</li>
);
}}
</PairedCount>
))}
</ul>
);
Import react-pair using esm.sh, and use it directly:
<script type="module">
import { createElement, useState } from "https://esm.sh/react";
import { pair } from "https://esm.sh/react-pair";
const useCount = initialCount => {
const [count, setCount] = useState(initialCount);
return { onClick: () => setCount(count + 1), children: count };
};
const PairedCount = pair(useCount);
const Component = ({ array = [] }) =>
createElement("ul", {
children: array.map(key =>
createElement(PairedCount, {
key,
children: usePairedCount => {
const props = usePairedCount(key);
return createElement("li", {
children: createElement("button", props),
});
},
}),
),
});
</script>
FAQs
🖇️ Util to help with the paired hook pattern
The npm package react-pair receives a total of 12 weekly downloads. As such, react-pair popularity was classified as not popular.
We found that react-pair 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.