npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@xstd/mime-type

v1.0.0

Published

MIMEType class implementation

Downloads

8

Readme

npm (scoped) npm NPM coverage npm type definitions

@xstd/mime-type

This library provides a MIMEType class to manage MIME types, somehow like the URL class.

Example:

import { MIMEType } from '@xstd/mime-type';

function isUtf8EncodedText(
  file: Blob,
): boolean {
  const mimeType = new MIMEType(file.type);
  return mimeType.type === 'text' && mimeType.parameters.get('encoding') === 'utf-8';
}

console.log(isUtf8EncodedText(new Blob(['abc'], { type: 'text/plain; encoding=utf-8' }))); // logs `true`

📦 Installation

yarn add @xstd/mime-type
# or
npm install @xstd/mime-type --save

📑 Documentation

/**
 * Represents a MIME type.
 */
declare class MIMEType {
  /**
   * Returns `true` if `input` can be parsed into a valid MIME type.
   */
  static canParse(input: string): boolean;
  
  /**
   * Returns a `MIMEType` if `input` can be parsed a into valid MIME type, else it returns `null`.
   */
  static parse(input: string): MIMEType | null;
  
  /**
   * Constructs a new MIMEType from an input string.
   *
   * Throws if the `input` is not a valid MIME type.
   */
  constructor(input: string);
  
  /**
   * Returns the type of this MIMEType.
   */
  get type(): string;
  
  /**
   * Sets the type of this MIMEType.
   * 
   * Throws if the `input` is not a valid type.
   */
  set type(input: string);
  
  /**
   * Returns the subtype of this MIMEType.
   */
  get subtype(): string;
  
  /**
   * Sets the subtype of this MIMEType.
   * 
   * Throws if the `input` is not a valid subtype.
   */
  set subtype(input: string);
  
  /**
   * Returns the parameters of this MIMEType.
   */
  get parameters(): MIMETypeParameters;
  
  /**
   * Returns a MIME type string.
   */
  toString(): string;
}
/* TYPES */

type MIMETypeParameterTuple = readonly [key: string, value: string];

type MIMETypeParametersInit = Iterable<MIMETypeParameterTuple> | Record<string, string> | string;

interface MIMETypeParametersFromOptions {
    readonly mode?: 'replace' | 'append';
}

interface MIMETypeParametersToStringOptions {
    readonly includeLeadingSeparator?: boolean;
}

/* CLASS */

/**
 * Represents a list of parameters of a MIME type.
 */
declare class MIMETypeParameters {
    /**
     * Returns `true` if `input` can be parsed into valid MIME type parameters.
     */
    static canParse(input: string): boolean;
    
    /**
     * Returns a `MIMETypeParameters` if `input` can be parsed into valid parameters, else it returns `null`.
     */
    static parse(input: string): MIMETypeParameters | null;
    
    /**
     * Constructs a new MIMETypeParameters from an input string, an Iterable of key/value, or an object of key/value.
     *
     * Throws if the `input` is invalid.
     *
     * > If the `input` is a string, the leading separator `;` bay be omitted.
     *
     * @example
     * ```ts
     * const parameters = new MIMETypeParameters('; encoding=utf-8');
     * ```
     */
    constructor(init?: MIMETypeParametersInit);
    
    /**
     * Returns the number of parameters.
     */
    get size(): number;
    
    /**
     * Appends a specified key/value pair as a new parameter.
     */
    append(key: string, value: string): void;
    
    /**
     * Deletes specified parameters and their associated value(s) from the list of all parameters.
     */
    delete(key: string, value?: string): void;
    
    /**
     * Returns the first value associated to the given parameter.
     */
    get(key: string): string | null;
    
    /**
     * Returns all the values associated with a given parameter as an array.
     */
    getAll(key: string): string[];
    
    /**
     * Returns a boolean value that indicates whether the specified parameter is in the parameters.
     */
    has(key: string, value?: string): boolean;
    
    /**
     * Sets the value associated with a given parameter to the given value.
     * If there were several matching values, this method deletes the others.
     * If the parameter doesn't exist, this method creates it.
     */
    set(key: string, value: string): void;
    
    /**
     * Removes all the parameters.
     */
    clear(): void;
    
    /**
     * Sorts all key/value pairs contained in this object in place.
     * The sort order is according to unicode code points of the keys.
     * This method uses a stable sorting algorithm (i.e. the relative order between key/value pairs with equal keys will be preserved).
     */
    sort(): void;
    
    /**
     * Returns an `Iterator` allowing iteration through all keys contained in this object.
     * The keys are strings.
     */
    keys(): Generator<string>;
    
    /**
     * Returns an `Iterator` allowing iteration through all values contained in this object.
     */
    values(): Generator<string>;
    
    /**
     * Returns an `Iterator` allowing iteration through all key/value pairs contained in this object.
     * The iterator returns key/value pairs in the same order as they appear in the parameters string.
     * The key and value of each pair are strings.
     */
    entries(): Generator<MIMETypeParameterTuple>;
    
    /**
     * Alias of `.entries()`.
     *
     * @see MIMETypeParameters.entries
     */
    [Symbol.iterator](): IterableIterator<MIMETypeParameterTuple>;
    
    /**
     * Allows iteration through all values contained in this object via a callback function.
     */
    forEach(callback: (value: string, key: string, parameters: MIMETypeParameters) => void): void;
    
    /**
     * Returns a MIME type parameters string suitable for use in a MIME type.
     */
    toString({ includeLeadingSeparator }?: MIMETypeParametersToStringOptions): string;
}