Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
A

asar

> 编程语言
Open source

Simple extensive tar-like archive format with indexing

2.8K stars0 likes0 views
WebsiteGitHub

About

Simple extensive tar-like archive format with indexing

@electron/asar - Electron Archive

ASAR is a simple extensive archive format. It concatenates all files together without compression (like tar) while having random access support.

Features

  • Support random access
  • Use JSON to store file information
  • Very easy to write a parser
  • Store the contents of duplicated files only once

CLI

Install

This module requires Node 22.12.0 or later.

bash
npm install --engine-strict @electron/asar

Usage

bash
$ asar --help

  Usage: asar [options] [command]

  Commands:

    pack|p <dir> <output>
       create asar archive

    list|l <archive>
       list files of asar archive

    extract-file|ef <archive> <filename>
       extract one file from archive

    extract|e <archive> <dest>
       extract archive

  Options:

    -h, --help     output usage information
    -V, --version  output the version number

Excluding multiple resources from being packed

Given:

    app
(a) ├── x1
(b) ├── x2
(c) ├── y3
(d) │   ├── x1
(e) │   └── z1
(f) │       └── x2
(g) └── z4
(h)     └── w1

Exclude: a, b

bash
asar pack app app.asar --unpack-dir "{x1,x2}"

Exclude: a, b, d, f

bash
asar pack app app.asar --unpack-dir "**/{x1,x2}"

Exclude: a, b, d, f, h

bash
asar pack app app.asar --unpack-dir "{**/x1,**/x2,z4/w1}"

Programmatic usage

For full API usage, see the API documentation.

Example

javascript
import { createPackage } from '@electron/asar';

const src = 'some/path/';
const dest = 'name.asar';

await createPackage(src, dest);
console.log('done.');

Please note that there is currently no error handling provided!

Deduplication

Files with identical contents are stored once and shared: the first copy is written into the archive and every other copy's header entry points at that same offset. Nothing changes for readers — each file still has its own entry, size, integrity hash, and executable bit — but archives with duplicated contents (a common shape for bundled node_modules) get smaller and pack faster, since the redundant bytes are never written.

Unpacked files (unpack / unpackDir) are always written out in full, because they live on disk outside the archive.

Transform

You can pass in a transform option, that is a function, which either returns nothing, or a stream.Transform. The latter will be used on files that will be in the .asar file to transform them (e.g. compress).

javascript
import { createPackageWithOptions } from '@electron/asar';

const src = 'some/path/';
const dest = 'name.asar';

function transform (filename) {
  return new CustomTransformStream()
}

await createPackageWithOptions(src, dest, { transform: transform });
console.log('done.');

Format

Asar uses Pickle to safely serialize binary value to file.

The format of asar is very flat:

markdown
| UInt32: header_size | String: header | Bytes: file1 | ... | Bytes: file42 |

The header_size and header are serialized with Pickle class, and header_size's Pickle object is 8 bytes.

The header is a JSON string, and the header_size is the size of header's Pickle object.

Structure of header is something like this:

…

offset and size records the information to read the file from archive, the offset starts from 0 so you have to manually add the size of header_size and header to the offset to get the real offset of the file.

Files with identical contents share a single copy in the archive, so more than one entry can point at the same offset.

offset is a UINT64 number represented in string, because there is no way to precisely represent UINT64 in JavaScript Number. size is a JavaScript Number that is no larger than Number.MAX_SAFE_INTEGER, which has a value of 9007199254740991 and is about 8PB in size. We didn't store size in UINT64 because file size in Node.js is represented as Number and it is not safe to convert Number to UINT64.

integrity is an object consisting of a few keys:

  • A hashing algorithm, currently only SHA256 is supported.
  • A hex encoded hash value representing the hash of the entire file.
  • An array of hex encoded hashes for the blocks of the file (i.e. for a blockSize of 4KB, this array contains the hash of every block if you split the file into N 4KB blocks).
  • A integer value blockSize representing the size in bytes of each block in the blocks hashes above.

Issues· 0 open

View all issuesOpen on GitHub

No open issues yet, or sync has not completed.

> Tags

TypeScriptasarchromeelectronjavascript

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言