hostr
Version:
A simple web server for the current working directory. Used for hello world style web sites hosting only files in current directory structure. Watches files and integrates with LiveReload.
24 lines (19 loc) • 533 B
JavaScript
;
var fs = require('fs');
var url = require('url');
var crypto = require('crypto');
var debug = require('../debug')(process.env.QUIET === 'true');
/**
* NotFound files route
*
* @param {http.incomingMessage} req A request Object
* @param {http.ServerResponse} res A response Object
* @param {Function} callback A callback, function(err)
*/
module.exports = function(options) {
options = options || {};
return function(req, res, next) {
res.writeHead(404);
res.end();
};
};