node window manager
2.2.0
Windows、macOS、およびLinux (WIP)
このパッケージをインストールするには、次を実行してください
$ npm install node-window-manager
次の例は、現在フォーカスされているウィンドウのタイトルを取得して非表示にする方法を示しています。
const { windowManager } = require ( "node-window-manager" ) ;
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 } ) ;
ドキュメントと API リファレンスはdocs
ディレクトリにあります。