Package Exports
- @geek/spawn
- @geek/spawn/spawn.js
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 (@geek/spawn) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Work in progresss
@geek/spawn
a cross-platform spawn replacement with promises
install
$ npm install @geek/spawn
usage
Asynchronous
var spawn = require('@geek/spawn').spawn;
spawn('echo', ['this is a test']);
Synchronous
var spawnSync = require('@geek/spawn').spawnSync;
spawnSync('echo', ['this is a test']);