0.2.0 • Published 9 years ago

node-pipe2 v0.2.0

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

node-pipe2

Build Status

This package provides access to the pipe2 system call available on OSX, Linux and other UNIX variants.

Usage

var pipe2 = require('node-pipe2');

pipe2(function(err, rfd, wfd) {
    if (err) {
        console.log('pipe failed, maybe out of FDs? ' + err);
        return;
    }
    // use rfd and wfd
});