GithubHelp home page GithubHelp logo

isabella232 / mime-format Goto Github PK

View Code? Open in Web Editor NEW

This project forked from postmanlabs/mime-format

0.0 0.0 0.0 50 KB

Database to mime-format based on content-type header and content

License: Apache License 2.0

JavaScript 100.00%

mime-format's Introduction

mime-format

Simple module to lookup the base format of HTTP response bodies from the content-type header. This module helps disambiguate the nature of the content, especially between text/* and application/*. The basic seven content type bases as defined RFC1341 are:

  • text
  • multipart
  • message
  • image
  • audio
  • video
  • application

However, from the content-type base, it is not easy to determine which formats are exactly "textual" in nature. For example, "text/json" as well as "application/json" are textual. This module disambiguates the same by maintaining a database of textual contents served over "application/*" content types.

Usage

npm install mime-format --save-dev;
var mimeFormat = require('mime-format');
console.log(mimeFormat.lookup('application/xml; charset=gBk'));
// outputs
// {
//   "type": "text",
//   "format": "xml"
//   "charset": "gBk"
// }

How to handle unlisted (not in db) content types?

When the content type is not in internal db, it looks for keywords in content type for best match. Under those circumstances, you will see a guessed: true property returned. In case even guess failed, you get unknown: true and format: 'raw' will be sent.

If the contentType argument is not a string, then the detection is attempted by typecasting it to String.

What is format?

Format is a secondary information for type: 'text' and 'embed. For texts, the format highlights what syntax the text is in. Additionally, it doubles up to let you know text was not detected by returning value raw. For most cases this is redundant.

List of types:

  • text
  • image
  • audio
  • video
  • embed
  • message
  • multipart
  • unknown

List of formats:

  • audio
  • video
  • image
  • plain
  • jsonp
  • json
  • xml
  • html
  • yaml
  • vml
  • webml
  • script
  • raw

mime-format's People

Contributors

czardoz avatar greenkeeper[bot] avatar kamalaknn avatar kunagpal avatar numaanashraf avatar prashantagarwal avatar samvelraja avatar shamasis avatar vegetableman avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.