how to get MIME type of file js code example

Example: 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