Gathering detailed insights and metrics for media-typer
Gathering detailed insights and metrics for media-typer
Gathering detailed insights and metrics for media-typer
Gathering detailed insights and metrics for media-typer
Simple RFC 6838 media type parser and formatter
npm install media-typer
Module System
Unable to determine the module system for this package.
Min. Node Version
Typescript Support
Node Version
NPM Version
55 Stars
220 Commits
11 Forks
13 Watching
1 Branches
25 Contributors
Updated on 18 Sept 2024
Minified
Minified + Gzipped
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-5.6%
5,773,325
Compared to previous day
Last week
2.3%
33,783,195
Compared to previous week
Last month
8.2%
139,849,138
Compared to previous month
Last year
5.7%
1,462,444,931
Compared to previous year
Simple RFC 6838 media type parser.
This module will parse a given media type into its component parts, like type, subtype, and suffix. A formatter is also provided to put them back together and the two can be combined to normalize media types into a canonical form.
If you are looking to parse the string that represents a media type and its
parameters in HTTP (for example, the Content-Type
header), use the
content-type module.
This is a Node.js module available through the
npm registry. Installation is done using the
npm install
command:
1$ npm install media-typer
1var typer = require('media-typer')
1var obj = typer.parse('image/svg+xml')
Parse a media type string. This will return an object with the following
properties (examples are shown for the string 'image/svg+xml; charset=utf-8'
):
type
: The type of the media type (always lower case). Example: 'image'
subtype
: The subtype of the media type (always lower case). Example: 'svg'
suffix
: The suffix of the media type (always lower case). Example: 'xml'
If the given type string is invalid, then a TypeError
is thrown.
1var obj = typer.format({ type: 'image', subtype: 'svg', suffix: 'xml' })
Format an object into a media type string. This will return a string of the
mime type for the given object. For the properties of the object, see the
documentation for typer.parse(string)
.
If any of the given object values are invalid, then a TypeError
is thrown.
1var valid = typer.test('image/svg+xml')
Validate a media type string. This will return true
if the string is a well-
formatted media type, or false
otherwise.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 2
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 2/30 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More