Skip to content

Instantly share code, notes, and snippets.

@harrietty
Created December 10, 2017 21:49
Show Gist options
  • Select an option

  • Save harrietty/39a17729f46ff23b91fbff5fc7398402 to your computer and use it in GitHub Desktop.

Select an option

Save harrietty/39a17729f46ff23b91fbff5fc7398402 to your computer and use it in GitHub Desktop.
const app = express();
const PORT = 3000;
app.listen(PORT, (err) => {
if (err) console.log(err);
else console.log(`App listening on port ${PORT}`)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment