修改的
修改后是一个简单的请求客户端,用于处理http本地缓存。
修改last-modified的HTTP规范,实现了last-modified , if-modified-since , etag , if-none-match 。
概要
Modified是根据构建的,并通过缓存支持对其进行修饰,因此,如果您熟悉请求,则几乎可以使用修改了。
var modified = require ( 'modified' ) ;
var request = modified ( options ) ; // Then use it almost the same as request
request ( 'http://google.com/doodle.png' ) . pipe ( fs . createWriteStream ( 'doodle.png' ) ) ;
使用modifie
1