ar
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

ar

A Node library for reading Unix archive files.

Usage

var ar = require('ar'),
    fs = require('fs'),
    path = require('path');
 
 
// Extracts all of the files in "some_archive.a" to the folder "./output".
var outputDir = "./output";
if (!fs.existsSync(outputDir)) fs.mkdirSync(outputDir);
 
var archive = new ar.Archive(fs.readFileSync('some_archive.a'));
var files = archive.getFiles();
for (var i = 0; i < files.length; i++) {
  var file = files[i];
  fs.writeFileSync(path.resolve(outputDir, file.name()), file.fileData());
}

Status

  • Supports the BSD variant of the common archive format, which is used by BSD ar and Debian packages.
    • For some reason, GNU ar from GNU binutils (at least from Mac Homebrew) also uses the BSD format.
  • Does not support AIX (big), AIX (small), GNU ar, and other archive variants. If you want support for alternative formats, please make your case in a GitHub issue, or implement it yourself in a PR!

Readme

Keywords

none

Package Sidebar

Install

npm i ar

Weekly Downloads

204

Version

0.0.1

License

none

Last publish

Collaborators

  • jvilk