Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

edid-reader

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

edid-reader

Linux edid reader lib

latest
Source
npmnpm
Version
0.4.0
Version published
Maintainers
2
Created
Source

edid-reader

EDID Reader library for node

Quick start

Install

npm install edid-reader

Fetching local system edid

const EdidReader = require('edid-reader');
const edidReader = new EdidReader();
edidReader.scan()
.then(() => {
  console.log('==========================');
  edidReader.monitors.forEach((monitor) => {
    console.log(`Vendor : ${monitor.vendor}`);
    console.log(`Model  : ${monitor.modelName}`);
    console.log(`EISA   : ${monitor.eisaId}`);
    console.log(`Code   : ${monitor.productCode}`);
    console.log(`Serial : ${monitor.serialNumber}`);
    console.log('==========================');
  });
});

Build

npm run build

Keywords

EDID

FAQs

Package last updated on 28 Feb 2022

Did you know?

Socket

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.

Install

Related posts