chaostools
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

node-window-control

Manage windows in Windows

Install

To install this package, just run

npm install node-window-control

Quick start

The following example shows how to get the currently focused window's title and hide it.

const { windowManager } = require("node-window-control");

const window = windowManager.getActiveWindow();

// Prints the currently focused window bounds.
console.log(window.getBounds());

// This method has to be called on macOS before changing the window's bounds, otherwise it will throw an error.
// It will prompt an accessibility permission request dialog, if needed.
windowManager.requestAccessibility();

// Sets the active window's bounds.
window.setBounds({ x: 0, y: 0 });

Documentation

The documentation and API references are located in the docs directory.

Thanks

node-window-managerhttps://github.com/sentialx/node-window-manager#readme

Package Sidebar

Install

npm i chaostools

Weekly Downloads

14

Version

0.0.2

License

MIT

Unpacked Size

96.3 kB

Total Files

43

Last publish

Collaborators

  • linghuchong