Skip to content

Instantly share code, notes, and snippets.

@burkeholland
Last active April 17, 2019 16:20
Show Gist options
  • Save burkeholland/7295b90ce93dc1a237b5c07286ad61ca to your computer and use it in GitHub Desktop.
Save burkeholland/7295b90ce93dc1a237b5c07286ad61ca to your computer and use it in GitHub Desktop.
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