node-pipe2
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

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

Package Sidebar

Install

npm i node-pipe2

Weekly Downloads

2

Version

0.2.0

License

MIT

Last publish

Collaborators

  • bpowers