Created
January 23, 2017 11:08
-
-
Save matstc/63cc0b020dc4b4407691a5863287a970 to your computer and use it in GitHub Desktop.
Simple ExpressJS 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('.')) | |
app.listen(3000, function () { | |
console.log('App listening on port 3000!') | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment