Support for mapping between file extensions and MIME types. This module uses the latest version of the Apache "mime.types" file (maps over 620 types to 800+ extensions). It is also trivially easy to add your own types and extensions, should you need to do that.
Install with npm:
npm install mime
var mime = require('mime');
mime.lookup('/path/to/file.txt'); // => 'text/plain'
mime.lookup('file.txt'); // => 'text/plain'
mime.lookup('.txt'); // => 'text/plain'
mime.lookup('htm'); // => 'text/html'
mime.extension('text/html'); // => 'html'
mime.extension('application/octet-stream'); // => 'bin'
mime.charsets.lookup('text/plain'); // => 'UTF-8'
(The logic for charset lookups is pretty rudimentary. Feel free to suggest improvements.)
Start by adding support for the type in your project using the mime.define() or mime.load() methods (documented below).
If there's a type that is shared across node.js modules, by different people, create an issue here and we'll add it if it makes sense.
If the type in question applies to projects outside the node.js community (e.g. if IANA approves a new type) file a bug with Apache and create an issue here that links to it.
mime.define({
'text/x-some-format': ['x-sf', 'x-sft', 'x-sfml'],
'application/x-my-type': ['x-mt', 'x-mtt'],
// etc ...
});
mime.lookup('x-sft'); // => 'text/x-some-format'
mime.extension('text/x-some-format'); // => 'x-sf'
mime.load('./my_project.types');