0.0.8 • Published 6 years ago

create-process v0.0.8

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

create-process

enter image description here

Small utility library to help your create and manage node processes more easily. (work in progress)

Installation

npm install --save create-process

Usage

const createProcess = require('create-process')

// Simple usage:
const p = createProcess('npm run build')

// Advanced usage:
const p = createProcess({
  cmd: 'npm',
  args: ['run', 'build'],
  opts: {
    cwd: path.join(__dirname, '..')
  }
})

// Killing your process:
p.kill()
0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago