
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
use-get-data
Advanced tools
A React hook for date fetching based on useSWR
The caching granularity of useSWR is relatively coarse, which hinders cache utilization.
For example, in a scenario where a user/list cache is requested first, useSWR cannot utilize the user/list cache when the data for user/<user_id> is needed.
It also cannot update the user/list cache when the user/<user_id> cache mutates.
Therefore, based on useSWR, I made some modifications and created this library.
pnpm install use-get-data
type ListData<T> = {
offset: number;
limit: number;
records: Array<T>;
total: number;
};
type User = {
id: number;
name: string;
profile: Record<string, unknown>;
};
const UserList = () => {
const { data, error, isLoading } = useFetch<ListData<User>>(
"/api/users",
fetcher,
{
relation: function* (data) {
for (let i = 0, l = data.records.length; i < l; i += 1) {
yield {
path: `records.${i}`,
cacheKey: `users/${data.records[i].id}`,
};
}
},
}
);
if (error) return "An error has occurred.";
if (isLoading) return "Loading...";
return (
<div>
{data.records.map((user) => (
<p>{user.name}</p>
))}
</div>
);
};
FAQs
Based on useSWR, the cache granularity has been optimized
We found that use-get-data demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.