Skip to content

Instantly share code, notes, and snippets.

@GoodNew5
Created March 11, 2018 12:52
Show Gist options
  • Save GoodNew5/a464dc7b098de0ce418f26ffa6c28064 to your computer and use it in GitHub Desktop.
Save GoodNew5/a464dc7b098de0ce418f26ffa6c28064 to your computer and use it in GitHub Desktop.
local server
var http = require('http');
var static = require('node-static');
var file = new static.Server('.');
http.createServer(function (req, res) {
file.serve(req, res);
}).listen(5000);
console.log('Server running on port 5000');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment