Spawn a process and return a promise that resolves when it finishes
npm install @vltpkg/promise-spawnSpawn a process and return a promise that resolves when the process
closes. Fork of@npmcli/promise-spawn.
@npmcli/promise-spawn- A SpawnPromise(cmd, args, options) class is added that handles
most of the functionality.
- promiseSpawn.open() is removed
- When run as root, it just runs the command as root, it doesn't try
to infer the uid/gid based on the owner of the cwd..
- No special handling for shell: true processes, and thus, no
escaping of arguments in that case. (It's just passed through to
Node's spawn() method.)
- Fully type-aware, even down to inferring the presence and type of
stdout and stderr properties, as well as the properties added
via the optional extra argument.
``js
import { promiseSpawn, SpawnPromise } from '@vltpkg/promise-spawn'
promiseSpawn(
'ls',
['-laF', 'some/dir/*.js'],
{
cwd: '/tmp/some/path', // defaults to process.cwd()
stdioString: true, // stdout/stderr as strings rather than buffers
stdio: 'pipe', // any node spawn stdio arg is valid here
// any other arguments to node child_process.spawn can go here as well,
},
{
extra: 'things',
to: 'decorate',
the: 'result',
},
)
.then(result => {
// {status === 0, signal === null, stdout, stderr, and all the extras}
console.log('ok!', result)
})
.catch(er => {
// er has all the same properties as the result, set appropriately
console.error('failed!', er)
})
`
Run the command, return a Promise that resolves/rejects based on the
process result.
Result or error will be decorated with the properties in the extra
object. You can use this to attach some helpful info about _why_ the
command is being run, if it makes sense for your use case.
If stdio is set to anything other than 'inherit', then thestdout
result/error will be decorated with and stderr values. IfstdioString is set to true, these will be strings. Otherwise they
will be Buffer objects.
Returned promise is decorated with the stdin stream if the processstdin
is set to pipe from . Writing to this stream writes to thestdin of the spawned process.
#### Options
- stdioString Boolean, default true. Return stdout/stderr outputacceptFail
as trimmed strings rather than buffers.
- Boolean, default false. If true, then a process thatstatus
closes with other than 0, or signal other than null,>0
will reject the promise. If true, then failure exits resolve the
promise normally. This is useful when you need to run a process
where an exit status of is informative, to avoid creating anchild_process.spawn
Error object for it.
- Any other options for can be passed as well.
_Workaround:_
If you provide a complex stdio option like ['pipe', 'inherit'], thenstdin
this will of course mean that is set to a writable stream,stderr is set to a readable stream (because that's the default), butstdout is set to null.
The types will accurately infer this from the type of the argument.
However, observe this incorrect result:
``
const result = await promiseSpawn(cmd, args, {
stdio: ['pipe', 'inherit'],
})
result.stdout
// ^? string <-- WRONG
result.stderr
// ^? string
TS will infer the options.stdio property to be('pipe' | 'inherit')[]. Since the second item of such an array'pipe'
_might_ be set to at some point, TS will infer the return{ stdout: string }
value to include .
To get around this, typecast the field to its literal value. This is a
bit noisy, but works fine:
`js`
const result = await promiseSpawn(cmd, args, {
stdio: ['pipe', 'inherit'] as ['pipe', 'inherit'],
})
result.stdout
// ^? null <-- CORRECT!
result.stderr
// ^? string
When given a single argument to apply to all stdio` fields, this
inference happens correctly by default.