Skip to content

Instantly share code, notes, and snippets.

@Arieg419
Created September 17, 2017 07:24
Show Gist options
  • Save Arieg419/acf197c05f6a2e83bd066adc51ee36b3 to your computer and use it in GitHub Desktop.
Save Arieg419/acf197c05f6a2e83bd066adc51ee36b3 to your computer and use it in GitHub Desktop.
Simple node server
const express = require('express')
const app = express()
app.get('/', (req,res) => {
res.sendFile(__dirname + "/index.html");
})
app.listen('8081')
console.log('Magic happens on port 8081')
exports = module.exports = app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment