npm.io
0.1.2 • Published 12 years ago

fscache-stream

Licence
MIT
Version
0.1.2
Deps
2
Vulns
0
Weekly
0
Stars
1

fscache-stream Build Status Coverage Status

A passtrough stream caching buffer to file system


Install

$ npm install fscache-stream -g

Usage

var http = require('http');
var fscache = require('fscache-stream');
var file = 'http://code.jquery.com/jquery-1.11.0.js';
http.get(file, function(req, res){
  req
  .pipe(fscache('jquery.js'))
  .pipe(process.stdout);
});

LISENCE

Copyright (c) 2014 popomore. Licensed under the MIT license.