Created
August 17, 2018 14:23
-
-
Save dibakarsutradhar/9c82133e773cb7ff4e26d8985f192ebb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const http = require('http'); | |
const url = require('url'); | |
const path = require('path'); | |
const fs = require('fs'); | |
const mimeTypes = { | |
"html": "text/html", | |
"jpeg": "image/jpeg", | |
"jpg": "image/jpg", | |
"png": "image/png", | |
"js": "text/javascript", | |
"css": "text/css" | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment