Last active
April 17, 2019 16:20
-
-
Save burkeholland/7295b90ce93dc1a237b5c07286ad61ca to your computer and use it in GitHub Desktop.
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
const express = require("express"); | |
const app = express(); | |
const port = process.env.PORT || 3000; | |
// viewed at http://localhost:3000 | |
app.get("/", function(req, res) { | |
res.send("Again I Go Unnoticed"); | |
}); | |
app.listen(port, () => console.log(`Example app listening on port ${port}!`)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment