
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
use-force-update
Advanced tools
useForceUpdate
is a React hook that you can call to force a function component
to re-render.
useForceUpdate
does not serve a purpose in and of itself. It is a tiny
package that aims to be integrated into larger hooks, making obsolete any class
functionality that is still reliant on this.forceUpdate()
.
npm install use-force-update
oryarn add use-force-update
In its simplest form, useForceUpdate
re-renders a component.
import useForceUpdate from 'use-force-update';
let renderCount = 0;
export default function MyButton() {
const forceUpdate = useForceUpdate();
renderCount++;
return (
<>
<p>I have rendered {renderCount} times.</p>
<button onClick={forceUpdate}>
Re-render
</button>
</>
);
};
In its ideal form, useForceUpdate
integrates with event emitters, such as
state managers.
import { useEffect } from 'react';
import useForceUpdate from 'use-force-update';
import store from './store';
export default function MyButton() {
const forceUpdate = useForceUpdate();
const username = store.get('username');
useEffect(() => {
// When the username changes, re-render this component.
const selector = state => state.username;
const unsubscribe = store.subscribe(selector, forceUpdate);
// When we unmount, stop re-rendering this component.
return () => {
unsubscribe();
};
}, [forceUpdate]);
if (username === null) {
return <p>You are not logged in.</p>;
}
return <p>Hello, {username}!</p>;
};
FAQs
React hook to force your function component to re-render
The npm package use-force-update receives a total of 29,706 weekly downloads. As such, use-force-update popularity was classified as popular.
We found that use-force-update demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.