0.0.8 • Published 4 years ago

create-process v0.0.8

Weekly downloads
4
License
MIT
Repository
github
Last release
4 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

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago