draft: refactor project so it sits on top of a standalone app

This commit is contained in:
2020-05-11 15:34:47 +02:00
parent a9ee5acc1c
commit f97e8455fc
13068 changed files with 1735502 additions and 866 deletions
+24
View File
@@ -0,0 +1,24 @@
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)