Created
March 16, 2016 17:32
-
-
Save auramo/76a9cfaa85eabd0eb1b9 to your computer and use it in GitHub Desktop.
node static server
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 express = require('express'); | |
var app = express(); | |
app.use(express.static('public')); | |
app.listen(8000, function () { | |
console.log('Example app listening on port 8000!'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment