
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-hook-mouse
Advanced tools
A React hook to access data from mouse events.
Using npm:
npm install --save react-hook-mouse
Using yarn:
yarn add react-hook-mouse
import React from 'react'
import useMouse from 'react-hook-mouse'
const displayCoordinates = ({x, y}) => `${x} : ${y}`
const displayFlag = flag => flag ? 'Yes' : 'No'
const ComponentWithMouse = () => {
const mouse = useMouse()
return (
<ul>
<li>
Mouse position in viewport:
{displayCoordinates(mouse.position.client)}
</li>
<li>
Mouse position on page:
{displayCoordinates(mouse.position.page)}
</li>
<li>
Mouse position on screen:
{displayCoordinates(mouse.position.screen)}
</li>
<li>
Mouse movement:
{displayCoordinates(mouse.movement)}
</li>
<li>
Left button was pressed:
{displayFlag(mouse.buttons.left)}
</li>
<li>
Right button was pressed:
{displayFlag(mouse.buttons.right)}
</li>
<li>
Middle button was pressed:
{displayFlag(mouse.buttons.middle)}
</li>
<li>
Alt key was pressed:
{displayFlag(mouse.keyboard.alt)}
</li>
<li>
Ctrl key was pressed:
{displayFlag(mouse.keyboard.ctrl)}
</li>
<li>
Meta key was pressed:
{displayFlag(mouse.keyboard.meta)}
</li>
<li>
Shift key was pressed:
{displayFlag(mouse.keyboard.shift)}
</li>
</ul>
)
}
Data in mouse.keyboard is always read from a MouseEvent and therefore it will only get updated on mouse events, not when the keys are actually pressed on the keyboard.
Contributions are welcome. File bug reports, create pull requests, feel free to reach out at tothab@gmail.com.
LGPL-3.0
FAQs
React hook for mouse position, movement and buttion states
We found that react-hook-mouse 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.