0.3.0 • Published 9 years ago
scripy v0.3.0
scripy

Run scripts in child process.

Install
$ npm install --save scripyUsage
const scripy = require('scripy')
const build = scripy('npm run build')
const start = scripy('npm start')
// if you want to kill each other
build.on('close', () => start.kill())
start.on('close', () => build.kill())API
scripy(command, options)
command
Type: string
The command to excute, it's passed as args to child_process.spawn.
options
displayName
Type: string
The name to display while loggin messages into the console, default is the parsed script name from command. eg: npm run build's scriptName and displayName both are npm.
scripy.sync(command, options)
Same as scripy() but using spawn.sync.
License
MIT © EGOIST