Skip to content

Instantly share code, notes, and snippets.

@marknorgren
Created November 11, 2016 22:01
Show Gist options
  • Save marknorgren/c90941c89ebcb659cbcce394b0cb63e6 to your computer and use it in GitHub Desktop.
Save marknorgren/c90941c89ebcb659cbcce394b0cb63e6 to your computer and use it in GitHub Desktop.
const express = require("express");
const app = express();
app.use(express.static('public'));
app.get("/", function(req, res) {
res.sendFile( __dirname + '/index.html');
});
const port = 3001;
app.listen(port, function() {
console.log("Listening on " + port);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment