
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
react-interactive-canvas
Advanced tools
Declarative canvas components that support mouse events
To test local changes using the demo replace
"react-interactive-canvas": "x.x.x"
with
"react-interactive-canvas": "link.."
In the demo's package.json
npm install --save react-interactive-canvas
import React, { Component } from 'react'
import { Canvas, TransparentImage, Rectangle, Circle } from 'react-interactive-canvas'
class Example extends Component {
handleClick = id => {
console.log(id);
}
render () {
return (
<Canvas width={1000} height={1000}>
<TransparentImage
src="/images/penguin.png"
id="penguin" // Required. Must be unique for every child of a <Canvas/>
x={100}
y={100}
width={200}
height={200}
onClick={this.handleClick}/>
<Rectangle
onClick={this.handleClick}
x={10}
y={40}
width={35}
height={60}
fillStyle="#2b2b2b"
id="grey-rectangle" // Required. Must be unique for every child of a <Canvas/>
/>
<Circle
onClick={this.handleClick}
x={200}
y={200}
radius={5}
fillStyle="blue"
id="blue-circle" // Required. Must be unique for every child of a <Canvas/>
/>
</Canvas>
)
}
}
Once those steps are complete then for any mouse event on the main visible canvas you can just check the color of the corresponding pixel on the hidden event canvas to know which component was interacted with!
(it won't be visible to the user of course!)
Honestly this package was built kinda just for fun. In 99% of use cases you're gonna be better off just using an SVG. The only situations in which this might be useful are
*yeah so this isn't exactly pixel perfect but it's pretty close. Canvas anti-aliasing makes this... difficult. But not impossible! Drawing pixel perfect shapes is dooable but it's a lot slower and requires you to manually implement shape definitions. See the SAFE CIRCLE
comment in Circle.js
as an example.
This project was bootstrapped using https://github.com/DimiMikadze/create-react-library
MIT © jbccollins
FAQs
Declarative canvas components that support mouse events
The npm package react-interactive-canvas receives a total of 6 weekly downloads. As such, react-interactive-canvas popularity was classified as not popular.
We found that react-interactive-canvas 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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.