
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
This package simplifies and allows the use of @tanstack/react-query. This package allows you to generate async requests using axios and then using them in your react query hooks to cache the data. THIS IS A WIP, I WILL ADD AND TAKE AWAY FEATURES AS I SEE
A library built on @tanstack/react-query to increase ease of use, control, and efficiency
Kore-Query comes with custom hooks like mutations, prefetch, queries. It also provides custom providers, and a client built on Axios to use with React Query with Suspension.
npm
npm i --save kore-query
yarn
yarn add kore-query
To clone the repo:
git clone https://github.com/koltenfluckiger/kore-query.git
import {useKorios, useKoreQuery} from "kore-query";
import React from "react";
function Container({children, ...props}) {
const Korios = useKorios();
const reviewsRequest = Korios.asyncerrator({
url: "/api/reviews",
params: {populate: "*"},
method: "GET",
options: {withCredentials: true},
});
const {data, isLoading, error} = useKoreQuery({
queryKey: ["reviews"],
queryFunc: reviewsRequest,
});
if (isLoading) {
return <div>Loading...</div>;
} else {
return <div>{data}</div>;
}
}
License used for this project - MIT
To contribute to this application, create a pull request. Here are the steps needed for doing that:
Fork the repo
Create a feature branch (git checkout -b NAME-HERE)
Commit your new feature (git commit -m 'Add some feature')
Push your branch (git push)
Create a new Pull Request
Following a code review, your feature will be merged.
Kolten Fluckiger
FAQs
This package simplifies and allows the use of @tanstack/react-query. This package allows you to generate async requests using axios and then using them in your react query hooks to cache the data. THIS IS A WIP, I WILL ADD AND TAKE AWAY FEATURES AS I SEE
We found that kore-query 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.