Skip to content

Instantly share code, notes, and snippets.

@freshcutdevelopment
Created October 23, 2015 20:41
Show Gist options
  • Select an option

  • Save freshcutdevelopment/7d394f36ea9e26f932be to your computer and use it in GitHub Desktop.

Select an option

Save freshcutdevelopment/7d394f36ea9e26f932be to your computer and use it in GitHub Desktop.
'use strict';
var express = require('express');
var app = express();
app.use(express.static('app'));
app.get('/', function(req, res) {
res.sendfile('./app/test.html');
});
app.listen(5001);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment