
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
@capable-health/hooks
Advanced tools
In your app.tsx entry file, you will need to add the `CapableClientProvider`
In your app.tsx entry file, you will need to add the CapableClientProvider
import { CapableClient } from "@capable-health/client";
import { CapableClientProvider } from "@capable-health/hooks";
const capableClient = new CapableClient({
TOKEN: () => Promise.resolve(""),
});
return (
<CapableClientProvider capableClient={capableClient}>
...
</CapableClientProvider>
);
NOTE: you need to remove <QueryClientProvider client={queryClient}> if you're using it. CapableClientProvider handles adding the QueryClientProvider for you.
In your component, you'll need to import the CapableClientHookContext which will provide you with the CapableClientHook object. From there, you can call any CapableClient endpoint and have all your responses cached using react-query.
import { useContext } from "react";
import { CapableClientHooksContext } from "@capable-health/hooks";
const capableClientHooks = useContext(CapableClientHooksContext);
const { data, isLoading, isError } = capableClientHooks.surveys.getSurveys({ id: "survey_id" })
FAQs
In your app.tsx entry file, you will need to add the `CapableClientProvider`
We found that @capable-health/hooks demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.