All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.smrf-native.node_modules.tar.examples.extracter.js Maven / Gradle / Ivy

The newest version!
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);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy