Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
The custom more powerful mime-type utility can work with mime-db.
fork from mime-types, these features added:
mime = new Mime(require('mime-db'))
mime = require('mime-type/with-db')
directly, but firstnpm install mime-db
mime = new Mime()
business, so you could do lookup = mime.lookup.bind(mime)
..define(type, mime)
functionality.load(mimes)
functionality.glob(pattern)
functionality.delete(type)
functionality.clear(filter)
functionality.exist(type)
functionality to check whether a mime-type is exist..extensions
will be deprecated, use mime[type].extensions
instead.undefined
if input is invalid or not found.Otherwise, the API is compatible.
$ npm install mime-type
//create an empty mime-type:
var mime = require('mime-type')()
//or create an instance and load mime-db. you need `npm install mime-db`
var mime = require('mime-type/with-db')
//it equals to:
var db = require('mime-db')
var mime = require('mime-type')(db)
All functions return undefined
if input is invalid or not found.
Lookup the content-type associated with a file.
mime.lookup('json') // 'application/json'
mime.lookup('.md') // 'text/x-markdown'
mime.lookup('file.html') // 'text/html'
mime.lookup('folder/file.js') // 'application/javascript'
mime.lookup('folder/.htaccess') // false
mime.lookup('cats') // false
Return all MIME types which matching a pattern(See Minimatch).
mime.glob('*/*') // ['application/octet-stream']
mime.glob('*/*markdown') // ['text/x-markdown']
mime.glob('text/j*') // ['text/jade', 'text/jsx']
mime.glob('unknown/x') // []
test whether a mime-type is exist.
It is an alias for mime.hasOwnProperty
mime.exist('text/x-markdown') // true
mime.exist('unknown/xxx') // false
define a new mime-type. the duplicationWay is optional the process way of duplication extensions:
return the added extensions list if successful or undefined
.
mime.define('script/coffee', {
extensions: ['coffee', 'litcoffee', 'coffee.md']
}, mime.dupAppend)
mime.lookup ('coffee') //[ 'text/coffeescript', 'script/coffee' ]
remove a specified mime-type
mime.delete('script/coffee') //true
clear all or specified mime-types
the filter could be a string pattern or a function
return the count of deleted mime-types.
mime.clear() //clear all mime-types
mime.clear('text/*') //clear the specified mime-types
mime.clear(function(type, mime){
return type.substr(0,5) === 'text/'
})
load a lot of mime-types. return the count of loaded mime-types.
mime.clear() //clear all mime-types
mime.load({
'script/coffee': {
extensions: ['coffee', 'coffee.md', 'litcoffee'],
compressible: true,
charset: 'utf-8',
defaultExtension: 'coffee.md'
},
'script/python': {
extensions: ['py', 'py.md', 'litpy'],
compressible: true,
charset: 'utf-8'
}
})
Create a full content-type header given a content-type or extension.
mime.contentType('markdown') // 'text/x-markdown; charset=utf-8'
mime.contentType('file.json') // 'application/json; charset=utf-8'
// from a full path
mime.contentType(path.extname('/path/to/file.json')) // 'application/json; charset=utf-8'
Get the default extension for a content-type.
mime.extension('application/octet-stream') // 'bin'
Lookup the implied default charset of a content-type.
mime.charset('text/x-markdown') // 'UTF-8'
A map of content-types by extension.
A map of extensions by content-type.
A map of mime object(IMimeType) by content-type.
export interface IMimeType {
source: string;
charset?: string;
compressible?: boolean;
extensions: string[]|string;
}
the default duplicationo process way.
See mime.define
.
FAQs
the custom more powerful mime-type utility can work with mime-db.
The npm package mime-type receives a total of 5,166 weekly downloads. As such, mime-type popularity was classified as popular.
We found that mime-type 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.