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

Dependents (2)

Package Sidebar

Install

npm i smosh

Weekly Downloads

230

Version

1.2.0

License

MIT

Last publish

Collaborators

  • helder