
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.
hypercanvas
Advanced tools
A reactive framework to build declarative canvas application
NOTE: STILL WIP
import {app, h, Stage, Bitmap, Text, Shape} from "hypercanvas";
const canvas = document.getElementById("canvas");
const view = (state, actions) => {
const drawRect = (elem, ctx) => {
ctx.beginPath();
ctx.fillStyle = "#f00";
ctx.rect(-50, -50, 100, 100);
ctx.fill();
};
const drawCircle = (elem, ctx) => {
ctx.beginPath();
ctx.lineWidth = 2;
ctx.strokeStyle = "#0f0";
ctx.arc(0, 0, 50, 0, Math.PI*2, true);
ctx.closePath();
ctx.stroke()
}
return (
<Stage>
<Shape x={250} y={250} draw={drawRect}>
<Shape x={100} y={100}>
<Shape draw={drawCircle}/>
</Shape>
</Shape>
<Text text="Hello World!" fontSize="12pt" fontFamily="Arial" />
<Bitmap image={"/keroxp.png"} width={100} height={100}/>
</Stage>
)
};
const stage = app(null, null, view, canvas);
setInterval(() => {
const ctx = canvas.getContext("2d");
stage.render(ctx)
}, 16);
FAQs
A reactive framework to build declarative canvas application
We found that hypercanvas 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.