smosh

1.2.0 • Public • Published

smosh Build Status

A middleware between resmushit and streams on top of vinyl.

How to use?

npm install smosh --save
var smosh = require('smosh'),
    file  = smosh(vinylFile),
    data  = '';
 
file.on('data', function(chunk) {
    // file chunk stream
    data += chunk;
});
 
file.on('end', function(newBuffer, info) {
    // vinyl metadata if previously given
    console.log(newBuffer.toString());
    // or if data is streamed
    console.log(data);
    // percentage compressed
    console.log(info.percent)
});
 
file.on('error', function(err) {
    throw err;
});

License

MIT © Helder Santana

Based on: node-smushit

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i smosh

    Weekly Downloads

    207

    Version

    1.2.0

    License

    MIT

    Last publish

    Collaborators

    • helder