Created
April 1, 2021 21:11
-
-
Save elpuas/1e0210669ee89d13197685b034352009 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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