/spawn-bin

Spawns a new Node process that runs the bin file of a given package.

Primary LanguageJavaScript

spawn-bin

Build Status Greenkeeper badge version

Spawns a new Node process that runs the bin file of a given package.

API

spawnBin(bin, args, [opts])

Same as API as child_process.spawnSync with bin being resolved first.

If the name of the executable does not equal the package name you can use the format <package>:<executable>:

spawnBin('flow-bin:flow', ['.']);

Note: The stdio option is set to 'inherit' by default.

License

MIT