
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.
edid-generator
Advanced tools
This is a simple tool to generate EDID binary files.
npm install edid-generator
import {
createEdidData,
getPredefinedModesList,
} from 'edid-generator';
// Example 1 - Create EDID data with custom params
import { writeFileSync } from 'fs';
const params = {
horiz_pixels: 640,
vert_pixels: 1536,
refresh_rate: 60,
interlaced: false,
};
const result = createEdidData({
baseFileType: 'HDR',
type: 'custom',
customEdidParams: params,
withV3CSHeader: true,
yCbCr422: false,
yCbCr444: false,
});
writeFileSync(`./${result.fileName}`, result.data);
// Example 2 - Create EDID data with default params
const mode = getPredefinedModesList()[0]; // { name: '4K / 60', horiz_pixels: 3840, vert_pixels: 2160, refresh_rate: 60 }
const result2 = createEdidData({
baseFileType: 'HDR',
type: 'predefined',
predefinedMode: '3840x2160@60',
yCbCr422: false,
yCbCr444: false,
});
console.log(result2);
// Example 3 - Create EDID data with default params and V3CS header
const result3 = createEdidData({
baseFileType: 'HDR',
type: 'predefined',
predefinedMode: '3840x2160@60',
withV3CsHeader: true,
yCbCr422: false,
yCbCr444: false,
});
console.log(result3);
FAQs
This is a simple tool to generate EDID binary files.
We found that edid-generator demonstrated a healthy version release cadence and project activity because the last version was released less than 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.