
Security News
Opengrep Adds Apex Support and New Rule Controls in Latest Updates
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Identifies file types based on magic bytes, patterns, and other unique file attributes.
Know thy files
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.
To add Mimetics to your project, use:
npm install mimetics
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.
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)
})
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
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
})
Mimetics currently supports a variety of formats, including but not limited to:
txt
), Markdown (md
), LaTeX (tex
), RTF (rtf
)jpg
, jpeg
), PNG (png
), GIF (gif
), BMP (bmp
), ICON (ico
), WebP (webp
), PDF (pdf
), SVG (svg
)mp3
), OGG (ogg
), WAV (wav
)mp4
), QuickTime (mov
), AVI (avi
), MKV (mkv
), WebM (webm
), FLV (flv
)zip
), RAR (rar
), GZIP (gz
), 7ZIP (7z
)epub
)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.
definitions
(Array): Array of custom file definitions to add, with each object containing properties like tag
, type
, ext
, mime
, magic
, and pattern
.
For more detailed API documentation, see the API reference and the comments in the code.
Contributions are welcome. Submit a Pull Request or open an Issue to discuss any changes. Please read contributing.md for details on our code of conduct, and the process for submitting merge requests to us.
Mimetics includes a test suite built with testr.
To run the test, first clone the respository:
git clone https://github.com/basedwon/mimetics.git
Install the dependencies, then run npm test
:
npm install
npm test
If you find this project useful and want to help support further development, please send us some coin. We greatly appreciate any and all contributions. Thank you!
Bitcoin (BTC):
1JUb1yNFH6wjGekRUW6Dfgyg4J4h6wKKdF
Monero (XMR):
46uV2fMZT3EWkBrGUgszJCcbqFqEvqrB4bZBJwsbx7yA8e2WBakXzJSUK8aqT4GoqERzbg4oKT2SiPeCgjzVH6VpSQ5y7KQ
Mimetics is MIT licensed.
FAQs
Identifies file types based on magic bytes, patterns, and other unique file attributes.
The npm package mimetics receives a total of 3,284 weekly downloads. As such, mimetics popularity was classified as popular.
We found that mimetics demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.