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.
query-to-extension
Advanced tools
Plugin that connects react-query to chrome extension service worker.
Current version stills in beta, use at your own risk.
Typing still needs to be well implemented.
Connect your react-query instance (Queryclient) to the extension service worker listeners.
// queryClient.ts
import { QueryClient } from "@tanstack/react-query";
import { connectContextToExtension } from "query-to-extension";
const queryClient = new QueryClient(/* ... */);
connectContextToExtension(queryClient, {
// here you can define your own connection name
connectionName: "chrome-extension-boilerplate-script",
});
export default queryClient;
Register queries in your service worker runtime, using chrome extension api. Sets an arrangement of listeners for each described query and one for mutations, data sent to listeners, will return back as a query value.
// service-wroker.ts
import { registerQueriesMap } from "query-to-extension";
import { QUERY_COUNTER, QUERY_DATA } from "../queryIds";
// receives message from interface and delivery it back directly to query `data`;
/* (context: MappedQueryListenerMessage) => Promise<any> */
import serviceData from "./serviceData";
import serviceCounter from "./serviceCounter";
// receives the same data as mutation receives as message directly from interface and delivery
// it back to mutation function;
/* (context: any) => Promise<any> */
import mutationFn from "./mutationFn";
type MyQueryMap = Parameters<typeof registerQueriesMap>[0];
// you can pass the necessary mutation response type
type MutationResponseType = {
/* ... */
};
const queriesMap = [
{
queryKey: QUERY_DATA,
listenerFn: serviceData,
broadcast: true,
},
{
queryKey: QUERY_COUNTER,
listenerFn: serviceCounter,
broadcast: true,
},
/* ... */
] as MyQueryMap;
registerQueriesMap<MutationResponseType>(queriesMap, mutationFn);
Your component imlplementation is even simpler, all query fucntion complexity now goes to the service worker runtime and you don't need to worry about it in the component.
/* ... rest of your component ... */
const queryData = useQuery({
queryKey: [...QUERY_DATA, { from: "popup" }],
initialData: -1,
// no query function is necessary here, service worker listener will replace it
});
/* ... rest of your component ... */
FAQs
Plugin that connects react-query to chrome extension service worker
We found that query-to-extension 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.
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.