Skip to content

Instantly share code, notes, and snippets.

@elpuas
Created April 1, 2021 21:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elpuas/1e0210669ee89d13197685b034352009 to your computer and use it in GitHub Desktop.
Save elpuas/1e0210669ee89d13197685b034352009 to your computer and use it in GitHub Desktop.
// Require Express Module
const express = require('express')
// Calls express function to start new Express app.
const app = express()
app.listen( 3000, () => {
console.log( 'App listening on port 3000' )
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment