0.2.3 • Published 6 years ago

@allegiant/mime v0.2.3

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

mime

Simple mime type library. Can be used standalone or as a module for the allegiant app framework.

There be 🐲 here! The API and functionality are being cemented, anything before a 1.0.0 release is subject to change.

Npm Version Build Status Coverage Status

Installation

npm install @allegiant/mime --save

Usage

const Mime = require('@allegiant/mime');

var mime = new Mime();
// Alternatively; mime = new Mime('text/plain') to specify the expected default mime type returned on type queries

// Default mime type for unknown type queries
console.log("Default Mime Type: ", mime.type());

// mime.type Accepts file extensions with or without a '.' 
console.log("Mime type for: .txt", "-", mime.type(".txt"));
console.log("Alternative extension: txt", "-", mime.type("txt"));

// Can be used to generate content-type headers with the encoding specified
console.log("Content-Type:", mime.type(".txt", 'utf8'));

// Find extensions for a known mime type
console.log("Known extensions for Mime Type: 'text/html' =", mime.ext("text/html"));

// Unknown mime types always return '' for an extension query
console.log("Extensions for Unknown Mime Type: 'unknowntype' = '" + mime.ext("unknowntype") + "'");

Copyright & License

Copyright © 2017 Allegiant. Distributed under the terms of the MIT License, see LICENSE

Availble via npm or github.