Skip to content

Instantly share code, notes, and snippets.

@NamelessJu
NamelessJu / nodejs-webserver.js
Last active April 25, 2026 14:04
A small web server using NodeJS for developing websites
const http = require('http');
const { URL } = require('url');
const path = require('path');
const fs = require('fs');
const PORT = 8080;
/** Set to a string path relative to the root or to a falsy value to return a plain text message */
const ERROR_404_DOCUMENT_PATH = null;