fscache-stream

a passtrough stream caching buffer to file system
ad

项目文档

fscache-stream Build Status Coverage Status

A passtrough stream caching buffer to file system


$ npm install fscache-stream -g
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);
});

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