A Node.js and zero-dependencies MIME type utility.
- Presentation
- Installation
- Technical information
- Usage
- Code of Conduct
- Contributing
- Support
- Security
- License
This library is powered by mime-db data. It provides a very simple, lightweight, safe yet speed utility to deal with MIME types and file extensions.
Supports 1180 file extensions and 965 MIME types.
npm install node-mime-types
npm i -S node-mime-types
- NodeJS >= 8.17.0
- NPM >=6.13.4
Code style follows Airbnb JavaScript Best Practices using ESLint.
Uses Mocha and Chai for unit testing.
- Code security and most precisely module dependencies can be audited running
npm audit
.
const mime = require('node-mime-types');
// mime is an object of functions
const {
getExtension,
getMIMEType,
} = require('node-mime-types');
node-mime-types module exports an object of functions. You'll find the complete list of functions below.
mime
<Object> with the following functions.
Returns the file extension(s) based on the MIME type.
Note:
- if a MIME type does not exist or is unknown, the empty string is returned;
- if a MIME type has only one extension related to, a string is returned;
- if a MIME type corresponds to multiple extensions, an array is returned;
- supports MIME types in lower and upper case.
mimeType
<String>- Returns: <String> | <Array> Default:
''
Examples:
getExtension(); // ''
getExtension(false); // ''
getExtension(''); // ''
getExtension('application/unknown'); // ''
getExtension('application/json5'); // '.json5'
getExtension('application/rtf'); // '.rtf'
getExtension('text/plain'); // ['.txt', '.text', '.conf', '.def', '.list', '.log', '.in', '.ini']
getExtension('application/json'); // ['.json', '.map']
getExtension('IMAGE/PNG'); // '.png'
Returns the MIME type based on the file name or path extension.
Note:
- if a file name or path is not a string or is the empty string, the empty string is returned;
- if a file name or path has no extension or an unknown extension, a default MIME type is returned;
- supports extensions in lower and upper case.
filenameOrPath
<String>- Returns: <String> Default:
application/octet-stream
Examples:
getMIMEType(); // ''
getMIMEType([]); // ''
getMIMEType(''); // ''
getMIMEType('f'); // 'application/octet-stream'
getMIMEType('file.unknown'); // 'application/octet-stream'
getMIMEType('.js'); // 'application/octet-stream'
getMIMEType('file.html'); // 'text/html'
getMIMEType('file.css'); // 'text/css'
getMIMEType('/usr/file.json'); // 'application/json'
getMIMEType('/usr/file.json.txt'); // 'text/plain'
getMIMEType('C:\\file.JS'); // 'application/javascript'
getMIMEType('../../path/to/file-name.XML'); // 'text/xml'
getMIMEType('README.md'); // 'text/markdown'
This project has a Code of Conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
If you find any MIME type or file extension missing, please directly contribute to mime-db.
Please take also a moment to read our Contributing Guidelines if you haven't yet done so.
Uses prettier
to format source code.
npm run format
npm run lint
npm run lint:fix
npm test
Extensions by MIME type and MIME types by extension files.
NOTE:
- will format
src
right after building files; - will automatically fix linting.
npm run build
Please see our Support page if you have any questions or for any help needed.
For any security concerns or issues, please visit our Security Policy page.
MIT.