New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-pipe2

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-pipe2

exposes the pipe2 system call for building unix pipelines/filters

latest
Source
npmnpm
Version
0.2.0
Version published
Weekly downloads
14
7.69%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

pipe2

FAQs

Package last updated on 20 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts