You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
371 B
11 lines
371 B
const tar = require('tar-stream')
|
|
const fs = require('fs')
|
|
const path = require('path')
|
|
const pipeline = require('pump') // eequire('stream').pipeline
|
|
|
|
fs.createReadStream('test.tar')
|
|
.pipe(tar.extract())
|
|
.on('entry', function (header, stream, done) {
|
|
console.log(header.name)
|
|
pipeline(stream, fs.createWriteStream(path.join('/tmp', header.name)), done)
|
|
})
|
|
|