Created
October 23, 2015 20:41
-
-
Save freshcutdevelopment/7d394f36ea9e26f932be to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| '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