
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@burnsred/query
Advanced tools
> **⚠️ DEPRECATED**: This package is deprecated and will no longer receive updates.
⚠️ DEPRECATED: This package is deprecated and will no longer receive updates.
This package has been deprecated as of version 1.0.0 and is no longer maintained.
What this means:
Recommended Action: Please migrate to alternative solutions as soon as possible.
For questions about this deprecation, please open an issue in the main repository.
Last maintained version: 1.0.0 Deprecation date: February 2026
The Query interface is the main abstraction point.
It allows interfacing data storage/backing layers with data modification. E.g. Redux/API with Forms and Lists.
Each lower layer needs to provide its own verison of the useQuery hook.
import { useQuery } from "@burnsred/api";
function MyForm({ api, id }) {
// Asks the API layer to ensure the data are available.
const query = useQuery({ api, id });
if (query.processing) return <Loading />;
return (
<Form {...query}>
...
</Form>
)
}
useQuery:
The EntityField for this record.
name: string;
value: T;
reset: () => void;
errors: FieldErrorMap;
onChange: ChangeEventHandler;
value).onSubmit: FormEventHandler;
save the draft. Should update the initialValue, and write to whatever backing store is in use.pagination: boolean;
processing: boolean;
processingDidFail: boolean;
valueInitial: T;
FAQs
> **⚠️ DEPRECATED**: This package is deprecated and will no longer receive updates.
We found that @burnsred/query 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.

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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.