Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
es-mime-types
Advanced tools
mime-types
rewrite in TypeScript with ESM and CommonJS targets
The ultimate javascript content-type utility.
Similar to the mime@1.x
module, except:
mime-types
simply returns false
, so do
const type = mime.lookup('unrecognized') || 'application/octet-stream'
.new Mime()
business, so you could do var lookup = require('mime-types').lookup
..define()
functionality.lookup(path)
Otherwise, the API is compatible with mime
1.x.
pnpm i es-mime-types
All mime types are based on mime-db, so open a PR there if you'd like to add mime types.
import { lookup, contentType, extension, charset, types } from 'es-mime-types'
All functions return false
if input is invalid or not found.
lookup(path)
Lookup the content-type associated with a file.
lookup('json') // 'application/json'
lookup('.md') // 'text/markdown'
lookup('file.html') // 'text/html'
lookup('folder/file.js') // 'application/javascript'
lookup('folder/.htaccess') // false
lookup('cats') // false
contentType(type)
Create a full content-type header given a content-type or extension.
When given an extension, lookup
is used to get the matching
content-type, otherwise the given content-type is used. Then if the
content-type does not already have a charset
parameter, charset
is used to get the default charset and add to the returned content-type.
contentType('markdown') // 'text/x-markdown; charset=utf-8'
contentType('file.json') // 'application/json; charset=utf-8'
contentType('text/html') // 'text/html; charset=utf-8'
contentType('text/html; charset=iso-8859-1') // 'text/html; charset=iso-8859-1'
// from a full path
contentType(path.extname('/path/to/file.json')) // 'application/json; charset=utf-8'
extension(type)
Get the default extension for a content-type.
extension('application/octet-stream') // 'bin'
charset(type)
Lookup the implied default charset of a content-type.
charset('text/markdown') // 'UTF-8'
types[extension]
A map of extensions by content-type.
MIT © v1rtl
FAQs
mime-types rewrite in TypeScript with ESM and CommonJS targets
The npm package es-mime-types receives a total of 47,685 weekly downloads. As such, es-mime-types popularity was classified as popular.
We found that es-mime-types demonstrated a not healthy version release cadence and project activity because the last version was released 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.