JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 9176
  • Score
    100M100P100Q132946F
  • License MIT

Identifies file types based on magic bytes, patterns, and other unique file attributes.

Package Exports

  • mimetics
  • mimetics/lib/mimetics.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mimetics) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Mimetics

Know thy files

npm pipeline license downloads

Gitlab Github Twitter Discord

Mimetics identifies file types based on magic bytes, patterns, and other unique file attributes. It provides an intuitive API for both synchronous and asynchronous file type detection, supporting various file formats including text, image, audio, video, and archive types.

Installation

To add Mimetics to your project, use:

npm install mimetics

Usage

Mimetics allows you to detect file types from file buffers, file names, and even File objects in browser environments. You can also extend its functionality by adding custom definitions.

Basic Example

const Mimetics = require('mimetics')
const fs = require('fs')

// Load a buffer from a file (e.g., sample.txt)
const buffer = fs.readFileSync('sample.txt')
const mimetics = new Mimetics()

// Synchronous file type detection
const fileType = mimetics.parse(buffer)
console.log(fileType) // Output: { tag: 'text', type: 'text', ext: 'txt', mime: 'text/plain' }

// Asynchronous file type detection (for ZIP files, etc.)
mimetics.parseAsync(buffer).then(fileType => {
  console.log(fileType)
})

Adding Custom Definitions

You can extend Mimetics with custom definitions for additional file types.

const Mimetics = require('mimetics')

const customDefinitions = [
  {
    tag: 'custom',
    type: 'myfiletype',
    ext: 'myft',
    mime: 'application/x-myfiletype',
    magic: [0x12, 0x34, 0x56],
    pattern: /^MYFILE/i,
  }
]

const mimetics = new Mimetics()
mimetics.addDefinitions(customDefinitions)

const buffer = /* load a buffer for a custom file type */
const fileType = mimetics.parse(buffer)
console.log(fileType) // Output should match custom definition

Browser Example

const Mimetics = require('mimetics')

const fileInput = document.querySelector('#fileInput')
fileInput.addEventListener('change', async (event) => {
  const file = event.target.files[0]
  const mimetics = new Mimetics()
  
  const fileType = await mimetics.fromFile(file)
  console.log(fileType) // Output: file type information
})

Supported File Types

Mimetics currently supports a variety of formats, including but not limited to:

  • Text: Plain text (txt), Markdown (md), LaTeX (tex), RTF (rtf)
  • Image: JPEG (jpg, jpeg), PNG (png), GIF (gif), BMP (bmp), ICON (ico), WebP (webp), PDF (pdf), SVG (svg)
  • Audio: MP3 (mp3), OGG (ogg), WAV (wav)
  • Video: MP4 (mp4), QuickTime (mov), AVI (avi), MKV (mkv), WebM (webm), FLV (flv)
  • Archive: ZIP (zip), RAR (rar), GZIP (gz), 7ZIP (7z)
  • Ebook: EPUB (epub)

API Reference

parse(buffer, name)

Synchronously parses a buffer to identify the file type.

  • Parameters:

    • buffer (Uint8Array | ArrayBuffer): The file buffer to parse.
    • name (string, optional): The file name, which can help in detection.
  • Returns: File type object or null if no match is found.

parseAsync(buffer, name)

Asynchronously parses a buffer to identify the file type, with support for ZIP archive analysis.

  • Parameters:

    • buffer (Uint8Array | ArrayBuffer): The file buffer to parse.
    • name (string, optional): The file name, which can assist in detection.
  • Returns: A promise resolving to a file type object or null if no match is found.

fromName(filePath)

Determines file type based on the file name extension.

  • Parameters:

    • filePath (string): The file path or name.
  • Returns: File type object based on the file extension or null if no match is found.

fromFile(file)

Asynchronously determines the file type from a File object (for browser use).

  • Parameters:

    • file (File): File object to analyze.
  • Returns: A promise resolving to a file type object.

addDefinitions(definitions)

Adds custom file definitions to the existing set.