mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-12 12:10:44 +08:00
Experimenting with Router definition
This commit is contained in:
@@ -1246,6 +1246,16 @@ if (!module.parent) {
|
||||
|
||||
//////
|
||||
|
||||
var router = new express.Router();
|
||||
|
||||
router.get('/', function (req, resp, next?) {
|
||||
resp.send('response from router');
|
||||
resp.end();
|
||||
if (next) {
|
||||
next();
|
||||
}
|
||||
});
|
||||
|
||||
function test_general() {
|
||||
|
||||
app.use(function (err, req, res, next) {
|
||||
@@ -1478,4 +1488,5 @@ function test_middleware() {
|
||||
app.use(express.cookieSession());
|
||||
app.use(express.directory('public'));
|
||||
app.use(express.static('public'));
|
||||
app.use(router.middleware);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user