1.0.5 • Published 7 years ago

win-watcher v1.0.5

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

win-watcher

Get killed, started, running, top processes on Windows

npm npm

Install

npm i --save win-watcher

Requirements

node-gyp to build src/win.cc

Usage

var windows = require('win-watcher')
var win = windows(500,250)

win.on('focus', p => {
  console.log('  >> Top Process: %s <<', p)
})

win.on('kill', p => {
  console.log('  >> Killed Process: %s <<', p)
})

win.on('start', p => {
  console.log('  >> Started Process: %s <<', p)
})

Functions

module(runningInterval, focusInterval)

  • Number runningInterval: milliseconds for check new/killed processes. (Default 500)

  • Number focusInterval: milliseconds of interval for check top process. (Default 200)

isRunning(process)

  • String process: name of process. Return if process is running.

getTopProcess()

Return focused process.

Events

kill

Called when a process is killed.

start

Called when a process is started.

focus

Called when the top process is changed.

Author

Francesco Cannizzaro

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago