
Security News
Node.js TSC Votes to Stop Distributing Corepack
Corepack will be phased out from future Node.js releases following a TSC vote.
#mimos
Mime database interface.
Lead Maintainer - Adam Bretz
Mimos is a convenience class for retrieving mime information objects.
new Mimos([options])
Creates a new Mimos object where:
[options]
- an option object the following keys
[override]
- an object hash that is merged into the built in mime information specified here. Each key value pair represents a single mime object. Each override value should follow this schema:
key
- the key is the lower-cased correct mime-type. (Ex. "application/javascript").value
- the value should an object following the specifications outlined here. Additional values include:
type
- specify the type
value of result objects, defaults to key
. See the example below for more clarification.predicate
- method with signature function(mime)
when this mime type is found in the database, this function will run. This allows you make customizations to mime
based on developer criteria.mimos.path(path)
Returns mime object where:
path
path to file including the file extension. Uses the extension
values of the mime objects for lookup.const mimos = new Mimos();
const mime = mimos.path('/static/public/app.js');
// mime
/*
{
source: 'iana',
charset: 'UTF-8',
compressible: true,
extensions: [ 'js' ],
type: 'application/javascript'
}
*/
mimos.type(type)
Returns mime object where:
type
the content-type to find mime information about. Uses the type
values of the mime objects for lookup.const mimos = new Mimos();
const mime = mimos.type('text/plain');
// mime
/*
{
source: 'iana',
compressible: true,
extensions: ['txt', 'text', 'conf', 'def', 'list', 'log', 'in', 'ini'],
type: 'text/plain'
}
*/
In certain situations, it can be helpful to override the built in mime type information. The optional argument to the Mimos constructor is used to override and add mime information. Below is an example to help understand how this works.
const options = {
override: {
'node/module': {
source: 'iana',
compressible: true,
extensions: ['node', 'module', 'npm'],
type: 'node/module'
},
'application/javascript': {
source: 'iana',
charset: 'UTF-8',
compressible: true,
extensions: ['js', 'javascript'],
type: 'text/javascript'
},
'text/html': {
predicate: function(mime) {
if (someCondition) {
mime.foo = 'test';
}
else {
mime.foo = 'bar';
}
return mime;
}
}
}
}
const mimos = new Mimos(options);
console.dir(mimos.path('./node_modules/mimos.module'));
/*
{
source: 'iana',
compressible: true,
extensions: ['node', 'module', 'npm'],
type: 'node/module'
}
*/
console.dir(mimos.type('application/javascript'));
/*
Note: even though we asked for type 'application/javascript', the type value is 'text/javascript' because of the override. Always use the proper content-type for retrieval.
{
source: 'iana',
charset: 'UTF-8',
compressible: true,
extensions: ['js', 'javascript'],
type: 'text/javascript'
}
*/
console.dir(mimos.type('text/html'));
/*
someCondition is true:
{
source: 'iana',
compressible: true,
extensions: ['html','htm'],
type: 'test/html',
foo: 'test'
}
someCondition is false:
{
source: 'iana',
compressible: true,
extensions: ['html','htm'],
type: 'test/html',
foo: 'bar'
}
*/
FAQs
Mime database interface
The npm package mimos receives a total of 28,021 weekly downloads. As such, mimos popularity was classified as popular.
We found that mimos demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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
Corepack will be phased out from future Node.js releases following a TSC vote.
Research
Security News
Research uncovers Black Basta's plans to exploit package registries for ransomware delivery alongside evidence of similar attacks already targeting open source ecosystems.
Security News
Oxlint's beta release introduces 500+ built-in linting rules while delivering twice the speed of previous versions, with future support planned for custom plugins and improved IDE integration.