Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 508 Bytes

readme.md

File metadata and controls

28 lines (21 loc) · 508 Bytes

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!');
		}
	});