Skip to content

Instantly share code, notes, and snippets.

@dibakarsutradhar
Created August 17, 2018 14:23
Show Gist options
  • Save dibakarsutradhar/9c82133e773cb7ff4e26d8985f192ebb to your computer and use it in GitHub Desktop.
Save dibakarsutradhar/9c82133e773cb7ff4e26d8985f192ebb to your computer and use it in GitHub Desktop.
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