You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
802 B
43 lines
802 B
9 years ago
|
|
||
|
/**
|
||
|
* Module dependencies.
|
||
|
*/
|
||
|
|
||
|
var express = require('../')
|
||
|
, http = require('http')
|
||
|
, connect = require('connect');
|
||
|
|
||
|
var app = express.createServer();
|
||
|
|
||
|
app.get('/', function(req, res){
|
||
|
req.foo();
|
||
|
res.send('test');
|
||
|
});
|
||
|
|
||
|
// app.set('views', __dirname + '/views');
|
||
|
// app.set('view engine', 'jade');
|
||
|
//
|
||
|
// app.configure(function(){
|
||
|
// app.use(function(req, res, next){
|
||
|
// debugger
|
||
|
// res.write('first');
|
||
|
// console.error('first');
|
||
|
// next();
|
||
|
// });
|
||
|
//
|
||
|
// app.use(app.router);
|
||
|
//
|
||
|
// app.use(function(req, res, next){
|
||
|
// console.error('last');
|
||
|
// res.end('last');
|
||
|
// });
|
||
|
// });
|
||
|
//
|
||
|
// app.get('/', function(req, res, next){
|
||
|
// console.error('middle');
|
||
|
// res.write(' route ');
|
||
|
// next();
|
||
|
// });
|
||
|
|
||
|
app.listen(3000);
|
||
|
console.log('listening on port 3000');
|