Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

node-ee-mime-magic

In memory mime sniffer without depencies (using the files magic numbers)

readme

node-ee-mime-magic

In memory mime sniffer without depencies ( using the files magic numbers )

currently supporting the following file types

  • gif
  • jpeg
  • png
  • tiff
  • webp

Usage

var mimeMagic = require( "node-ee-mime-magic" );

mimeMagic( buffer, function( err, mimeType ){
    if ( err || !mimeType ) console.log( "failed to detect mime type :(" );
    else console.log( "mime type:", mimeType.mime, "extension", mimeType.extension );
} );