
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.
react-oiia-cat
Advanced tools
A React component featuring an interactive cat that follows your cursor with smooth animations
An interactive React component featuring a cat that smoothly follows your cursor with animations and sound effects.
Try the interactive demo to see the cat in action!
npm install react-oiia-cat
import { Cat } from "react-oiia-cat";
function App() {
return (
<div>
<Cat />
</div>
);
}
The component works out of the box with default settings and requires no props.
The cat uses these default assets:
/oiia-cat-move.gif - Animation during movement/oiia-cat-static.gif - Static image when idle/oiia-oiia-sound.mp3 - Sound effect during movementThe component is designed to work perfectly with zero configuration, but you can still customize the styling:
/* Customize the cat appearance */
.cat img {
width: 100px;
height: 100px;
filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}
The component includes default CSS, but you can customize it:
.cat {
position: fixed;
pointer-events: none;
z-index: 1000;
transition: none;
}
.cat img {
width: 64px;
height: 64px;
display: block;
}
/* Custom styling */
.my-custom-cat img {
width: 100px;
height: 100px;
filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}
The package includes default assets. Make sure these files are available in your public folder:
/oiia-cat-move.gif - Animation for when the cat is moving/oiia-cat-static.gif - Static image when the cat is not moving/oiia-oiia-sound.mp3 - Sound effect during movementYou can download these assets from the demo repository or create your own with the same file names.
This package includes TypeScript definitions. The component requires no props:
import { Cat } from "react-oiia-cat";
const MyComponent: React.FC = () => {
return <Cat />;
};
MIT
Issues and pull requests are welcome on GitHub.
FAQs
A React component featuring an interactive cat that follows your cursor with smooth animations
The npm package react-oiia-cat receives a total of 2 weekly downloads. As such, react-oiia-cat popularity was classified as not popular.
We found that react-oiia-cat 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
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.