0.9.3 • Published 11 years ago

util-pipe v0.9.3

Weekly downloads
3
License
MIT
Repository
github
Last release
11 years ago

Util Pipe DEPRECATED use pipe-io

create

Easy way to create pipe which would handle all error events and redirect tham to callback.

    var pipe        = require('util-pipe'),
        NameFrom    = 'README.md',
        NameTo      = 'README_COPY.gz',
        
        options     = {
            gzip: true
        };
    
    pipe.create(NameFrom, NameTo, options, function(error) {
        var msg = 'done';
        
        console.log(error || msg);
    });

getBody

Get body of readStream

    var pipe        = require('util-pipe'),
        fs          = require('fs'),
        NAME        = 'README.md',
        readStream  = fs.createReadStream(NAME);
    
    pipe.getBody(readStream, function(error, data) {
        console.log(error || data);
    });
0.9.3

11 years ago

1.1.2

11 years ago

0.8.2

11 years ago