Created
February 12, 2018 14:59
-
-
Save nyl2k8/45321e956c18b0e21cfa645a858be21c 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
//#1 - npm init -y | |
//#2 - npm install -save express | |
//#3 - npm install -save nodemon | |
var express = require('express') | |
var app = express() | |
var port = 3000; | |
app.get('/', function(req, res){ | |
res.sendFile(__dirname + 'index.html') | |
}) | |
app.listen(port, function(){ | |
console.log("Listening on port: " + port) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment