The Wayback Machine - https://web.archive.org/web/20200910210439/https://github.com/bulkan/co-sh
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

sh

Call any shell command like a function using ES 6 Proxies & Generators.

Use node v5.0.x with --harmony-proxies flag, along with

Usage

var co = require('co');
var read = require('co-read');
var sh = require('co-sh');

co(function *(){
  var ls = yield sh.ls();

  var buf;
  while (buf = yield read(ls.stdout)) {
    console.log(buf.toString());
  }

  try {
    yield sh.nonexistingcmd();
  } catch(e){
    console.log(e);
  }
})();

Assuming the above code is in a file called test.js run it using;

node --harmony-proxies test.js

See the examples folder for more

License

MIT

About

Using ES6 Proxies & Generators to run shell commands

Topics

Resources

License

Packages

No packages published
You can’t perform that action at this time.