Created
December 4, 2019 00:27
-
-
Save mt9304/af45f0206c32e60876b9788e9c76744d to your computer and use it in GitHub Desktop.
What your server.js should look like.
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
var express = require('express'), | |
app = express(), | |
port = process.env.PORT || 3000; | |
app.listen(port); | |
console.log('Movie app started on port ' + port); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment