
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.
@minecraftts/buffered-image
Advanced tools
Not to be confused with Java BufferedImages, I just couldn't think of a better name (lawl). This is just a thin wrapper on top of node-canvas
import { BufferedImage } from "@minecraftts/buffered-image"
const bufferedImage = new BufferedImage(200, 200);
const graphics = bufferedImage.getGraphics();
graphics.fillStyle = "red";
graphics.fillRect(50, 50, 100, 100);
// before querying pixels you have to do this
bufferedImage.refresh();
let pixel = bufferedImage.getPixel(0, 0);
console.log(pixel); // => { r: 0, g: 0, b: 0, a: 0 }
pixel = bufferedImage.getPixel(100, 100);
console.log(pixel); // => { r: 255, g: 0, b: 0, a: 255 }
Run
npm install @minecraftts/buffered-image
Everything here is licensed under the MIT license
FAQs
A simple wrapper around node-canvas
We found that @minecraftts/buffered-image 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.