Express.js HTTP request timeout

后端 未结 3 1574
-上瘾入骨i
-上瘾入骨i 2021-01-05 02:37

I was wondering if anyone could tell me what the default HTTP request timeout is when using express.

What I mean by this is: after how many seconds of dealing with a

3条回答
  •  情话喂你
    2021-01-05 03:25

    The default request timeout in Node v0.9+ is 2 minutes. That is what express uses.

    You can increase it for a single route using:

    app.get('/longendpoint', function (req, res) {
       req.setTimeout(360000); // 5 minutes
       ...
    });
    

提交回复
热议问题