
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
quill-tar contains utility functions for packing and unpacking quill system tarballs.
Unpacking system tarballs is a fundamental piece of functionality that will be reused in multiple parts of conservatory
There are two core methods:
quillTar.pack(tarball, dir, files, callback)@tarball {string|Stream} Location of the tarball to create or stream to pipe to.
@dir {string} Base directoty the tarball is being created from.
@files {Array} List of files to include in the tarball
@callback {function} Continuation to respond to when complete.
quillTar.unpack(tarball, target, options, callback)@tarball {string} Path to the tarball to untar.
@target {string} Parent directory to untar into
@options {Object} Options for untaring
@callback {function} Continuation to respond to when complete
Lets take a look at some sample usage:
var quillTar = require('quill-tar');
quillTar.unpack(
'/path/to/some/tarball.tgz',
'/parent/dir/to/untar/into',
{
modes: {
exec: 0777 & (~022),
file: 0666 & (~022),
umask: 022
}
},
function (err, target) {
//
// This will output the absolute path of the directory
// processed by `quill-tar`
//
console.dir(target);
}
);
$ curl http://npmjs.org/install.sh | sh
$ npm install quill-tar
All tests are written with vows:
$ npm test
FAQs
Utility functions for packing and unpacking quill `system` tarballs
We found that quill-tar demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.