
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
dileep-draw
Advanced tools
drawing utilities for HTML5 Canvas.
npm i dileep-draw
then,
import { ... } from "dileep-draw"
It uses two custom types, Pt and Pts, each representing number[] and Pt[].
import type { Pt, Pts } from "dileep-draw";
const drawCircle: (ctx: CanvasRenderingContext2D, pt: Pt, diam: number) => void;
const drawFillText: (
ctx: CanvasRenderingContext2D,
msg: string,
pt: Pt
) => void;
const drawLine: (ctx: CanvasRenderingContext2D, pt1: Pt, pt2: Pt) => void;
const drawPath: (
ctx: CanvasRenderingContext2D,
path: Pts,
close?: boolean
) => void;
const drawSmoothPath: (ctx: CanvasRenderingContext2D, path: Pts) => void;
Uses quadratic curves to smoothen hard edges of path. The input path is expected to be generated with generateSmoothPath() from another package dileep-geom.
MIT
FAQs
drawing utilities for HTML5 Canvas
We found that dileep-draw 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.