浏览代码

Add request count function to test server

Ben Hsieh 8 年前
父节点
当前提交
d4b11948ea
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      test-server/server.js

+ 2
- 1
test-server/server.js 查看文件

40
     console.log('test server running at port ',8123)
40
     console.log('test server running at port ',8123)
41
 })
41
 })
42
 
42
 
43
+var count = 0
43
 
44
 
44
 app.use(function(req,res,next){
45
 app.use(function(req,res,next){
45
-  console.log(chalk.green('request url=') + chalk.magenta(req.url))
46
+  console.log(chalk.green('request url=') + chalk.magenta(req.url), ++count)
46
   next()
47
   next()
47
 })
48
 })
48
 
49