tar-js/examples/index.html

55 lines
1.1 KiB
HTML

<html>
<head>
<title>Browser Tar</title>
<script src='../node_modules/require-kiss/require-kiss.js'></script>
<script src='../lib/utils.js'></script>
<script src='../lib/header.js'></script>
<script src='../lib/tar.js'></script>
<script src='../lib/untar.js'></script>
<script>
(function () {
"use strict";
var Tar = require('tar'),
utils = require('utils'),
Untar = require('untar'),
tape = new Tar(),
out,
url,
base64;
function uint8ToString(buf) {
var i, length, out = '';
for (i = 0, length = buf.length; i < length; i += 1) {
out += String.fromCharCode(buf[i]);
}
return out;
}
out = tape.append('output.txt', 'This is test1!');
out = tape.append('dir/out.txt', 'This is test2! I changed up the directory');
out = tape.append('arr.txt', utils.stringToUint8('This is a Uint8Array!'));
Untar(out, function (header, data) {
var contents = uint8ToString(data);
console.log(header.fileName, contents);
});
/*
base64 = btoa(uint8ToString(out));
url = "data:application/tar;base64," + base64;
window.open(url);
*/
}());
</script>
</head>
<body>
</body>
</html>