node window manager
2.2.0
إدارة النوافذ في أنظمة التشغيل Windows وmacOS و لينكس (ويب)
لتثبيت هذه الحزمة، فقط قم بتشغيل
$ 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 } ) ;
توجد الوثائق ومراجع واجهة برمجة التطبيقات في دليل docs
.