Skip to content

Instantly share code, notes, and snippets.

@franrios
Created April 9, 2016 14:15
Show Gist options
  • Save franrios/d2ed139e944e3eeab33c1d7c74d3050b to your computer and use it in GitHub Desktop.
Save franrios/d2ed139e944e3eeab33c1d7c74d3050b to your computer and use it in GitHub Desktop.
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