Created
April 9, 2016 14:15
-
-
Save franrios/d2ed139e944e3eeab33c1d7c74d3050b to your computer and use it in GitHub Desktop.
This file contains hidden or 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.get('/', function (req, res) { | |
res.status(200).send('root path of the project! (Testing redeploy)\n') | |
}) | |
app.listen(8080, function () { | |
console.log('App listening at localhost:8080') | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment