1.0.0 • Published 8 years ago

fswrite-stream v1.0.0

Weekly downloads
686
License
Apache-2.0
Repository
github
Last release
8 years ago

fswrite-stream Build Status

Write a stream to a file with correct error handling, call the callback once it's finished

Install

$ npm install fswrite-stream --save

Usage

var fsWriteStream = require('fswrite-stream');


fsWriteStream('./test.html', request('http://google.fr'), function(err, size) {
    if (err) console.log(err);
    else console.log('Bytes written:', size);
})