/seashell

A beautiful way of running child_processes. I promise you!

MIT LicenseMIT

Seashell Build Status Dependencies Status

A beautiful way of running child_processes. I promise you!

Example

var seashell = require('seashell')

var ps = seashell('ps', {})
var grep = seashell('grep', {})

grep(ps('ax'), 'ssh').then(function(data) {
  console.log(data.stdout)
}, function(data) {
  console.log(data.stderr)
})

Installing

Just grab it from NPM:

$ npm install seashell

Documentation

A quick reference of the API can be built using Calliope:

$ npm install -g calliope
$ calliope build

Tests

You can run all tests using Mocha:

$ npm test

Licence

MIT/X11. ie.: do whatever you want.