Socket
Book a DemoInstallSign in
Socket

@mozilla/spawnd

Package Overview
Dependencies
Maintainers
6
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mozilla/spawnd

Spawn a dependent child process.

latest
Source
npmnpm
Version
4.5.2
Version published
Maintainers
6
Created
Source

spawnd

Build Status version MIT License

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.

License

MIT

Keywords

spawn

FAQs

Package last updated on 04 Jun 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts