0.0.5 • Published 10 years ago

command v0.0.5

Weekly downloads
322
License
MIT
Repository
github
Last release
10 years ago

command

A Node.js chainable, promise-based utility for running commands with child_process.spawn

Install

$ npm install command

Usage

var command = require('command');

command.open('/some/directory/path')
	.on('stdout', command.writeTo(process.stdout))
	.on('stderr', command.writeTo(process.stderr))
	.chdir('..')
	.exec('ls')
	.then(function() {
		var stdout = this.lastOutput.stdout;
		if (! stdout.trim().length) {
			console.warn('No files found!');
		}
	});