Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@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`
The npm package @capable-health/hooks receives a total of 0 weekly downloads. As such, @capable-health/hooks popularity was classified as not popular.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.