archive-type

Detect the archive type of a Buffer/Uint8Array

  • Types
  • ESM
  • CJS
License
MIT
Install Size
-(-)
Vulns
0
Published

Get started

$npm install archive-type
$pnpm add archive-type
$yarn add archive-type
$bun add archive-type
$deno add npm:archive-type
$vlt install archive-type
$vp add archive-type

Readme

archive-type Build Status

Detect the archive type of a Buffer/Uint8Array

Install

$ npm install --save archive-type

Usage

const archiveType = require('archive-type');
const readChunk = require('read-chunk');
const buffer = readChunk.sync('unicorn.zip', 0, 262);

archiveType(buffer);
//=> {ext: 'zip', mime: 'application/zip'}

API

archiveType(input)

Returns an Object with:

Or null when no match.

input

Type: Buffer Uint8Array

It only needs the first 262 bytes.

Supported file types

  • 7z
  • bz2
  • gz
  • rar
  • tar
  • zip
  • xz
  • gz

License

MIT © Kevin Mårtensson