moved output

This commit is contained in:
Tony Tam
2015-02-15 22:22:42 -08:00
parent 04074bd853
commit c7c3c969db
21 changed files with 2 additions and 628 deletions

View File

@@ -0,0 +1,7 @@
var express = require("express")
var app = express();
var docs_handler = express.static(__dirname + '/docs/');
app.use(docs_handler);
// start the server
app.listen(8002);