
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.
m-model-react
Advanced tools
m-model-react is designed to be used with [m-model-core](https://www.npmjs.com/package/m-model-core) in the world of react. It provides several useful optimized hooks
m-model-react is designed to be used with m-model-core in the world of react. It provides several useful optimized hooks
For the rest of the docuemnt, assume that we have already created model with m-model-core and called it User
import React from "react";
import { useModelDocById } from "m-model-react";
const UserShortInfoComponent = ({ userId }: { userId: number }) => {
const user = useModelDocById(User, userId);
if (!user) {
return <div>loading...</div>;
}
return (
<div>
{user.getFullname()}
</div>
);
};
import React, { useMemo } from "react";
import { useModelDocById } from "m-model-react";
const UserShortInfoComponent = ({ firstname }: { firstname?: string }) => {
const query = useMemo(() => {
if (!firstname) return null;
return { firstname }
}, [firstname]);
const user = useModelDocByQuery(User, query);
if (!user) {
return <div>loading...</div>;
}
return (
<div>
{user.getFullname()}
</div>
);
};
Similar to useModelDocById, just pass memoized array of ids and it will return array of model instances
Similar to useModelDocById. It will return array of model instances
returns array of all instances of model
FAQs
m-model-react is designed to be used with [m-model-core](https://www.npmjs.com/package/m-model-core) in the world of react. It provides several useful optimized hooks
We found that m-model-react demonstrated a not healthy version release cadence and project activity because the last version was released 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
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.