Skip to content

Instantly share code, notes, and snippets.

@nyl2k8
Created February 12, 2018 14:59
Show Gist options
  • Save nyl2k8/45321e956c18b0e21cfa645a858be21c to your computer and use it in GitHub Desktop.
Save nyl2k8/45321e956c18b0e21cfa645a858be21c to your computer and use it in GitHub Desktop.
//#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