Skip to content

Instantly share code, notes, and snippets.

@netroy
Created October 14, 2011 20:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save netroy/1288176 to your computer and use it in GitHub Desktop.
Save netroy/1288176 to your computer and use it in GitHub Desktop.
Simplest Static Webserver in Node.JS

Just install connect from npm. Run this in a directory that you'll like to serve static content from. To run on a specific port set ENV "StaticPort"

#!/usr/bin/env node
var connect = require('connect'),
app = connect.createServer(),
port = process.env.StaticPort || 8888;
app.use(connect.static(process.cwd()));
app.listen(parseInt(port, 10));
console.log("Static HTTP server at => http://localhost:" + port + "/\nPress CTRL + C to stop");
#!/usr/bin/env node
var http = require("http"),
url = require("url"),
path = require("path"),
fs = require("fs")
port = parseInt(process.env.StaticPort, 10) || 8888;
http.createServer(function(request, response) {
var filename = path.join(process.cwd(), url.parse(request.url).pathname);
path.exists(filename, function(exists) {
if(!exists) {
response.writeHead(404, {"Content-Type": "text/plain"});
response.write("404 Not Found\n");
response.end();
return;
}
if (fs.statSync(filename).isDirectory()) filename += '/index.html';
fs.readFile(filename, "binary", function(err, file) {
if(err) {
response.writeHead(500, {"Content-Type": "text/plain"});
response.write(err + "\n");
response.end();
return;
}
response.writeHead(200);
response.write(file, "binary");
response.end();
});
});
}).listen(port);
console.log("Static HTTP server at => http://localhost:" + port + "/\nPress CTRL + C to stop");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment