
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
Parse DDS images.
The library has a single method parse which takes a ArrayBuffer and
returns an object describing the DDS data.
Example of the returned object:
{ width: 4,
height: 4,
depth: 0,
levels: 3,
faces: 0,
format: 33777,
internal_format: 33777,
type: 33777,
bytesPerElement: 8,
compressed: true,
parts:
[ { offset: 128, size: 8 },
{ offset: 136, size: 8 },
{ offset: 144, size: 8 } ],
parts_count: 3 }
npm i gl-dds
import fs from 'fs';
import * as dds from 'gl-dds';
let buffer = fs.readFileSync('foo.dds');
let descriptor = dds.parse(buffer);
FAQs
Parse DDS images
We found that gl-dds 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.