JSPM

node-pipe2

0.2.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q32891F
  • License MIT

exposes the pipe2 system call for building unix pipelines/filters

Package Exports

  • node-pipe2

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-pipe2) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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