Skip to content
This repository was archived by the owner on Mar 16, 2019. It is now read-only.

Commit 86e3e8e

Browse files
committed
Change test server code
1 parent dab97c8 commit 86e3e8e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test-server/server.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,13 @@ app.use('/upload-form', function(req, res, next) {
5656
// })
5757
})
5858

59+
var count = 0
60+
61+
app.use(function(req, res, next) {
62+
console.log(req.url, ++count);
63+
next();
64+
})
65+
5966
app.use(upload.any())
6067
app.use('/public', express.static('./public'))
6168
// for redirect test

0 commit comments

Comments
 (0)