Skip to content

Instantly share code, notes, and snippets.

@yoelmacia
Created December 4, 2019 09:02
Show Gist options
  • Save yoelmacia/339255fa7f2354821c2f584544581df8 to your computer and use it in GitHub Desktop.
Save yoelmacia/339255fa7f2354821c2f584544581df8 to your computer and use it in GitHub Desktop.
const express = require("express");
const app = express();
const port = process.env.PORT || 3000;
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