Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@types/mime
Advanced tools
Stub TypeScript definitions entry for mime, which provides its own types definitions
The @types/mime package contains TypeScript type definitions for the 'mime' package, which is a utility to work with MIME types. It allows TypeScript developers to use the 'mime' package with type safety, providing autocompletion and type checking during development.
Lookup MIME type for a file extension
This feature allows you to get the MIME type for a given file extension. The getType function takes a file extension as a string and returns the corresponding MIME type.
"import mime from 'mime';
const mimeType = mime.getType('json'); // 'application/json'"
Get file extension for a MIME type
This feature allows you to get the file extension associated with a given MIME type. The getExtension function takes a MIME type as a string and returns the corresponding file extension.
"import mime from 'mime';
const extension = mime.getExtension('application/json'); // 'json'"
The mime-types package is similar to mime in that it provides lookup functionality for MIME types and file extensions. It is a lighter version without the code for MIME type definition and is based on the mime-db dataset.
The mime-db package is a comprehensive dataset of MIME type information, which other packages can use to build their MIME type functionality. It is not a direct utility like mime, but it serves as the source of MIME type information for other packages.
This is a stub types definition for @types/mime (https://github.com/broofa/mime#readme).
mime provides its own type definitions, so you don't need @types/mime installed!
FAQs
Stub TypeScript definitions entry for mime, which provides its own types definitions
The npm package @types/mime receives a total of 21,270,462 weekly downloads. As such, @types/mime popularity was classified as popular.
We found that @types/mime 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.