Skip to content

Instantly share code, notes, and snippets.

@iMichaelOwolabi
Last active April 7, 2020 16:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iMichaelOwolabi/7735ebdc8732243caa78a753e0c682a9 to your computer and use it in GitHub Desktop.
Save iMichaelOwolabi/7735ebdc8732243caa78a753e0c682a9 to your computer and use it in GitHub Desktop.
const express = require('express');
const app = express();
const port = 3000;
app.listen(port, () => {
console.log(`Server running on port ${port}`);
});
module.exports = app;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment