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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@jadsonlucena/mediatypes

v1.0.0

Published

This is a comprehensive compilation of media types that is periodically updated through the following projects: Apache, NGINX and Debian

Downloads

4

Readme

MediaTypes

CodeQL Test Coverage Status JavaScript Style Guide Conventional Commits

This is a comprehensive compilation of media types under the RFC-6838 protocol that may be periodically updated through the following projects: Apache, NGINX and Debian

What is

A file's extension has no meaning on the web. In order for the client to interpret the document correctly, the media type must be sent in the Content-Type header.

Interfaces

/**
 * @constructor
 * @fires MediaTypes#update
 * @fires MediaTypes#error
 * 
 * @throws {TypeError} Invalid updateInterval
 */
constructor(updateInterval?: number = 86400000)
// Getters
list(): { [extension: string]: MIMEType[] } // List of all extensions with their media types
updateInterval(): number
versions(): { apache: string, debian: string, nginx: string }
// Setters
/**
 * Periodic database update in milliseconds. if less than zero, will be disabled
 * 
 * @fires MediaTypes#update
 * @fires MediaTypes#error
 * 
 * @throws {TypeError} Invalid updateInterval
 * @see https://developer.mozilla.org/en-US/docs/Web/API/setInterval#delay
 */
updateInterval(updateInterval?: number = 86400000): void
/**
 * @method
 * @throws {TypeError} Invalid extension
 * @throws {SyntaxError} Invalid extension
 * @throws {TypeError} Invalid mediaType
 * @throws {SyntaxError} Invalid mediaType
 */
delete(
    extension: string
    mediaType: string, // https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types#structure_of_a_mime_type
): boolean

/**
 * @method
 * @throws {TypeError} Invalid path
 * @throws {SyntaxError} Invalid extension
 */
get(
    path: string // https://nodejs.org/api/path.html#pathparsepath
): MIMEType[] // https://nodejs.org/api/util.html#class-utilmimetype

/**
 * @method
 * @throws {TypeError} Invalid extension
 * @throws {SyntaxError} Invalid extension
 * @throws {TypeError} Invalid mediaType
 * @throws {SyntaxError} Invalid mediaType
 */
set(
    extension: string
    mediaType: string, // https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types#structure_of_a_mime_type
): boolean

/**
 * @method
 * @fires MediaTypes#update
 */
update(force?: boolean = false): Promise<null | { [extension: string]: MIMEType[] }> // List of new inserted media types
// Events
on('update', callback: (list: { [extension: string]: MIMEType[] }) => void): void
on('error', callback: (error: Error) => void): void

This module extends the main methods of the EventEmitter module:

Specifications

We strive to maintain complete code coverage in tests. With that, we provide all the necessary use cases for a good understanding of how this module works. See: test/MediaTypes.spec.js