mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 07:34:30 +00:00

PR-URL: https://github.com/iojs/io.js/pull/266 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
20 lines
385 B
JavaScript
20 lines
385 B
JavaScript
var tar = require("../tar.js")
|
|
, fs = require("fs")
|
|
|
|
|
|
function onError(err) {
|
|
console.error('An error occurred:', err)
|
|
}
|
|
|
|
function onEnd() {
|
|
console.log('Extracted!')
|
|
}
|
|
|
|
var extractor = tar.Extract({path: __dirname + "/extract"})
|
|
.on('error', onError)
|
|
.on('end', onEnd);
|
|
|
|
fs.createReadStream(__dirname + "/../test/fixtures/c.tar")
|
|
.on('error', onError)
|
|
.pipe(extractor);
|