Package Exports
- suspawn
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (suspawn) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
SuSpawn
example
require('suspawn')('env', {
env: {
VARBLOCKEDBYSUDOERSNORMALLY: 'BUT NOT NOW!'
}
}).stdout.pipe(process.stdout);
suspawn(command[, args][, options])
options.spawnOptions.env
Environmental variables to pass to the sudo
command.
options.env
Environmental variables to pass through to the spawned command.
options.uid
User to spawn as.
options.gid
Group to spawn as.
suspawn.getSpawnOptions(command[, args][, options])
A useful little function if you do not actually want to spawn the process, but would rather get the options to spawn it yourself. This allows some modification instead of straight spawning.