# create-process

> Small utility library to help your create and manage node processes more easily

Latest version **0.0.8** (published 2020-01-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install create-process
pnpm add create-process
yarn add create-process
bun add create-process
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.8 |
| Published | 2020-01-11 |
| First published | 2019-11-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 2.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Kevin Karsopawiro |
| Maintainers | afterburn |
| Keywords | create, process, manager, spawn, create-process |

## Links

- npm: https://www.npmjs.com/package/create-process
- Repository: https://github.com/afterburn/create-process
- Homepage: https://github.com/afterburn/create-process#readme
- Issues: https://github.com/afterburn/create-process/issues
- npm.io page: https://npm.io/package/create-process

## Dependencies (1)

- [cross-spawn](https://npm.io/package/cross-spawn.md) ^7.0.1

## Recent versions

- 0.0.8 (latest) — 2020-01-11
- 0.0.7 — 2020-01-11
- 0.0.6 — 2019-11-29
- 0.0.5 — 2019-11-28
- 0.0.4 — 2019-11-28
- 0.0.3 — 2019-11-27
- 0.0.2 — 2019-11-27
- 0.0.1 — 2019-11-27

## README

# create-process
![enter image description here](https://img.shields.io/npm/dt/create-process)

Small utility library to help your create and manage node processes more easily.
(work in progress)

## Installation
```shell
npm install --save create-process
```

## Usage
```javascript
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()
```

---
_Source: https://npm.io/package/create-process · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
