Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 308 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 308 Bytes

bare-subprocess

Native process spawning for JavaScript.

npm i bare-subprocess

Usage

const { spawn } = require('bare-subprocess')

const subprocess = spawn('echo', ['hello', 'world'], {
  stdio: 'inherit'
})

subprocess.on('exit', () => console.log('done'))

License

Apache-2.0