updated samples

This commit is contained in:
Tony Tam
2014-12-03 00:55:38 -08:00
parent 96ea15a4d0
commit 6e858ee645
21 changed files with 819 additions and 114 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);