updated app

This commit is contained in:
2012-05-30 23:00:06 -04:00
parent 6a753904b7
commit da6ad88d48
5545 changed files with 1101709 additions and 60 deletions

9
node_modules/derby-examples/hello/server.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
var express, expressApp, hello, http, server;
http = require('http');
express = require('express');
hello = require('./hello');
expressApp = express().use(express.static(__dirname + '/public')).use(hello.router());
server = http.createServer(expressApp).listen(3000);
hello.createStore({
listen: server
});