PHP 8.2.30
Preview: packer.js Size: 488 B
//proc/self/root/opt/alt/alt-nodejs6/root/usr/lib/node_modules/npm/node_modules/tar/examples/packer.js

var tar = require("../tar.js")
  , fstream = require("fstream")
  , fs = require("fs")

var dirDest = fs.createWriteStream('dir.tar')


function onError(err) {
  console.error('An error occurred:', err)
}

function onEnd() {
  console.log('Packed!')
}

var packer = tar.Pack({ noProprietary: true })
  .on('error', onError)
  .on('end', onEnd);

// This must be a "directory"
fstream.Reader({ path: __dirname, type: "Directory" })
  .on('error', onError)
  .pipe(packer)
  .pipe(dirDest)

Directory Contents

Dirs: 0 × Files: 3

Name Size Perms Modified Actions
385 B lrw-r--r-- 2021-09-28 09:36:12
Edit Download
488 B lrw-r--r-- 2021-09-28 09:36:12
Edit Download
1004 B lrw-r--r-- 2021-09-28 09:36:12
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).