This package has been deprecated

Author message:

This package is no longer supported.

xps

1.0.3 • Public • Published

xps - Cross-Platform Process Management

Build status NPM version Dependencies status Licence Stability: Experimental

xps is a cross-platform library for listing and killing processes.

Example

var ps = require('xps');
 
ps.list().fork(
  function(error) {
    throw error
  },
  function(processes) {
    processes.forEach(function(process){
      console.log(process.name + '' + process.pid)
    })
  }
);
 
ps.kill(123).fork(
  function(error){ console.log('Unable to kill 123') },
  function(){ console.log('Killed 123') }
);

Installing

You can grab the latest release from npm:

$ npm install xps

Platform support

xps requires either io.js or Node.js 0.10+

Licence

Copyright (c) 2015 Quildreen Motta.

Released under the MIT licence.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Published

Version History

  • Version
    Downloads (Last 7 Days)
    • Published

Package Sidebar

Install

npm i xps

Weekly Downloads

0

Version

1.0.3

License

MIT

Unpacked Size

12.9 kB

Total Files

12

Last publish

Collaborators

  • killdream