npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-mac-displays

v1.0.0

Published

A native Node.js module for enumerating over system display information

Downloads

25

Readme

node-mac-displays

This native Node.js module allows you to enumerate over system display information.

API

Display Object

The Display object represents a physical display connected to the system. A fake Display may exist on a headless system, or a Display may correspond to a remote, virtual display.

Display objects take the following format:

  • id Number - The display's unique identifier.
  • name String - The human-readable name of the display.
  • supportedWindowDepths Number[] - The window depths supported by the display.
  • rotation Number - The screen rotation in clockwise degrees.
  • scaleFactor Number - Output device's pixel scale factor.
  • isMonochrome Boolean - Whether or not the display is a monochrome display.
  • colorSpace Object - Representation of a custom color space.
    • name String - The localized name of the color space.
    • componentCount Number - The number of components, excluding alpha, the color space supports.
  • depth Number - The number of bits per pixel.
  • bounds Object
    • x Number - The x coordinate of the origin of the rectangle.
    • y Number - The y coordinate of the origin of the rectangle.
    • width Number - The width of the rectangle.
    • height Number - The height of the rectangle.
  • workArea Object
    • x Number - The x coordinate of the origin of the rectangle.
    • y Number - The y coordinate of the origin of the rectangle.
    • width Number - The width of the rectangle.
    • height Number - The height of the rectangle.
  • internal Boolean - true for an internal display and false for an external display.
  • isAsleep Boolean - Whether or not the display is sleeping.
  • refreshRate Number - Returns the refresh rate of the specified display.

displays.getAllDisplays()

Returns Array<Object> - Returns an array of display objects.

Example usage:

const displays = require('node-mac-displays')

const allDisplays = displays.getAllDisplays()

console.log(allDisplays[0])
/* Prints:
[
  {
    id: 69734406,
    name: 'Built-in Retina Display',
    refreshRate: 0,
    supportedWindowDepths: [
      264, 516, 520, 528,
      544,   0,   0,   0
    ],
    isAsleep: false,
    isMonochrome: false,
    colorSpace: { name: 'Color LCD', componentCount: 3 },
    depth: 520,
    scaleFactor: 2,
    bounds: { x: 0, y: 0, width: 1680, height: 1050 },
    workArea: { x: 0, y: 23, width: 1680, height: 932 },
    rotation: 0,
    internal: true
  }
]
*/

displays.getPrimaryDisplay()

Returns Object - the display containing the window with the keyboard focus.

Example Usage:

const displays = require('node-mac-displays')

const primary = displays.getPrimaryDisplay()

console.log(primary)
/* Prints:
{
  id: 69734406,
  name: 'Built-in Retina Display',
  refreshRate: 0,
  supportedWindowDepths: [
    264, 516, 520, 528,
    544,   0,   0,   0
  ],
  isAsleep: false,
  isMonochrome: false,
  colorSpace: { name: 'Color LCD', componentCount: 3 },
  depth: 520,
  scaleFactor: 2,
  bounds: { x: 0, y: 0, width: 1680, height: 1050 },
  workArea: { x: 0, y: 23, width: 1680, height: 932 },
  rotation: 0,
  internal: true
}
*/

displays.getDisplayByID(id)

  • id Number - The device ID for the display.

Returns Object - the display with the specified device ID.

Example Usage:

const displays = require('node-mac-displays')

const display = displays.getDisplayByID(2077749241)

console.log(display)
/* Prints:
{
  id: 69734406,
  name: 'Built-in Retina Display',
  refreshRate: 0,
  supportedWindowDepths: [
    264, 516, 520, 528,
    544,   0,   0,   0
  ],
  isAsleep: false,
  isMonochrome: false,
  colorSpace: { name: 'Color LCD', componentCount: 3 },
  depth: 520,
  scaleFactor: 2,
  bounds: { x: 0, y: 0, width: 1680, height: 1050 },
  workArea: { x: 0, y: 23, width: 1680, height: 932 },
  rotation: 0,
  internal: true
}
*/

displays.mirror(enable, firstID[, secondID])

  • enable Boolean - Whether to enable or disable mirroring.
  • firstID Number - The device ID for the primary display. If no second display ID is provided, the first display will default to the system's main display and the display corresponding to this ID will be set as the mirroring display.
  • secondID Number (optional) - The device ID for the secondary display (which will mirror the first).

Example Usage:

const displays = require('node-mac-displays')

const [firstDisplay, secondDisplay] = displays.getAllDisplays()

// Set the second display to mirror the first.
displays.mirror(true, firstDisplay.id, secondDisplay.id)

displays.screenshot(id, options)

  • id Number - The device ID for the display.
  • options Object
    • type String - The representation of the image. Can be 'jpeg', 'png', or 'tiff'. Defaults to 'jpeg'.
    • bounds Object
      • x Number - The x coordinate of the origin of the rectangle.
      • y Number - The y coordinate of the origin of the rectangle.
      • width Number - The width of the rectangle.
      • height Number - The height of the rectangle.

Returns Buffer - a Buffer representation of the desired display screenshot.

Takes a screenshot of the display with the specified id.

Example Usage:

const displays = require('node-mac-displays')
const fs = require('fs')
const path = require('path')

const { id } = displays.getPrimaryDisplay()

const ssPath = path.resolve(__dirname, 'screenshot.jpg')
const screenshotData = displays.screenshot(id, {
  bounds: {
    x: 100,
    y: 500,
    width: 200,
    height: 200
  }
})

// Write out JPEG image as screenshot.jpg in the current directory.
fs.writeFileSync(ssPath, screenshotData)