javascript mime type code example

Example 1: html script mime type

<script type="text/javascript"></script>

Example 2: mime type

media type is a two-part identifier to file formats and format contents 
transmitted on the Internet. The Internet Assigned Numbers Authority is 
the official authority of the standardization and publication of these 
classifications. 
also almost of an old extension on the internet is MIME type.

Example 3: How to Get The MIME Type of a File in JavaScript

/*
    This code comes from Vincent Lab
    And it has a video version linked here: https://www.youtube.com/watch?v=xPpdQqxvUtU
*/

// Import dependencies
const mime = require("mime");

console.log(mime.getType("txt"));                                     // ⇨ "text/plain"
console.log(mime.getType("test.txt"));                                // ⇨ "text/plain"
console.log(mime.getType("F:vincentlab\\videos\\test.txt"));          // ⇨ "text/plain"

console.log(mime.getExtension("text/plain"));                         // ⇨ "txt"

mime.define({"text/test": ["test", "tt"]});
console.log(mime.getType("test"));

Tags:

Html Example