
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@reactivers/context-binder
Advanced tools
@reactivers/context-binder
@reactivers/context-binderprovides to usecontextin a component without unnecesseary rerenders.
npm install --save @reactivers/context-binder
yarn add @reactivers/context-binder
import { createContext, FC, useCallback, useState } from 'react';
import { ContextBinder } from '@reactivers/context-binder';
interface Counter {
counter: number;
increase: () => void;
decrease: () => void;
}
const CounterContext = createContext<Counter>({} as Counter);
const CounterProvider: FC = ({ children }) => {
const [counter, setCounter] = useState(0);
const increase = useCallback(() => {
setCounter(old => old + 1)
}, [])
const decrease = useCallback(() => {
setCounter(old => old - 1)
}, [])
return (
<CounterContext.Provider value={{
counter,
increase,
decrease
}}>
{children}
</CounterContext.Provider>
)
}
const App = () => {
return (
<div className="sample-page center">
<div style={{ textAlign: 'center' }}>
<CounterText />
<DecreaseButton />
<IncreaseButton />
</div>
</div>
);
}
const CounterText = ContextBinder(
CounterContext,
{
counter: c => c.counter
},
({ context }) => {
const { counter } = context;
console.log("Counter render")
return (
<h1>Counter: {counter}</h1>
)
}
)
const DecreaseButton = ContextBinder(
CounterContext, {
decrease: c => c.decrease
}, ({ context }) => {
const { decrease } = context;
console.log("DecreaseButton render")
return (
<button onClick={decrease}>Decrease</button>
)
}
)
const IncreaseButton = ContextBinder(
CounterContext,
{
increase: c => c.increase
}
, ({ context }) => {
const { increase } = context;
console.log("IncreaseButton render")
return (
<button onClick={increase}>Increase</button>
)
}
)
const AppWrapper = () => {
return (
<CounterProvider>
<App />
</CounterProvider>
)
}
export default AppWrapper;
FAQs
React Context Binder Without Rerender!
We found that @reactivers/context-binder 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.