10.0.0 • Published 2 months ago

spawnd v10.0.0

Weekly downloads
244,899
License
-
Repository
github
Last release
2 months ago

spawnd

npm version npm dm npm dt

Spawn a process inter-dependent with parent process.

npm install spawnd

Usage

import { spawnd } from "spawnd";

const proc = spawnd("node server.js", { shell: true });

proc.destroy().then(() => {
  console.log("Destroyed!");
});

API

spawnd(command[, args, options])

Exactly the same API as Node.js spawn.

It returns a Child Process that exposes a destroy method that will kill the process.