Created
April 12, 2015 16:15
-
-
Save nicinabox/1cca035f391f4d75d5bc to your computer and use it in GitHub Desktop.
A handy server to use in development
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var connect = require('connect') | |
var http = require('http') | |
var serveStatic = require('serve-static') | |
var PORT = 8000; | |
var app = connect() | |
app.use(serveStatic(__dirname + '/public')) | |
app.use(serveStatic(__dirname)) | |
http.createServer(app).listen(PORT) | |
console.log('Server is running on port ' + PORT); |
Author
nicinabox
commented
Apr 12, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment