How to handle Node.js http server timeout event?How do I debug Node.js applications?How do I get started with Node.jsHow do I pass command line arguments to a Node.js program?How to decide when to use Node.js?How to exit in Node.jsWhat is the purpose of Node.js module.exports and how do you use it?How to parse JSON using Node.js?Using node.js as a simple web serverHow is an HTTP POST request made in node.js?Node.js Best Practice Exception Handling
What color to choose as "danger" if the main color of my app is red
Given 0s on Assignments with suspected and dismissed cheating?
Slice a list based on an index and items behind it in python
How does a permutation act on a string?
How to handle professionally if colleagues has referred his relative and asking to take easy while taking interview
How will the lack of ground stations affect navigation?
How to not get blinded by an attack at dawn
Does it matter what way the tires go if no directional arrow?
Formal Definition of Dot Product
How does Ctrl+c and Ctrl+v work?
Can I say: "When was your train leaving?" if the train leaves in the future?
Why would company (decision makers) wait for someone to retire, rather than lay them off, when their role is no longer needed?
Why did the soldiers of the North disobey Jon?
Is my test coverage up to snuff?
Why were the bells ignored in S8E5?
Are there microwaves to heat baby food at Brussels airport?
Meaning of "legitimate" in Carl Jung's quote "Neurosis is always a substitute for legitimate suffering."
When did game consoles begin including FPUs?
Why are goodwill impairments on the statement of cash-flows of GE?
It is as easy as A B C, Figure out U V C from the given relationship
Getting a similar picture (colours) on Manual Mode while using similar Auto Mode settings (T6 and 40D)
Network latencies between opposite ends of the Earth
UUID type for NEWID()
How to describe a building set which is like LEGO without using the "LEGO" word?
How to handle Node.js http server timeout event?
How do I debug Node.js applications?How do I get started with Node.jsHow do I pass command line arguments to a Node.js program?How to decide when to use Node.js?How to exit in Node.jsWhat is the purpose of Node.js module.exports and how do you use it?How to parse JSON using Node.js?Using node.js as a simple web serverHow is an HTTP POST request made in node.js?Node.js Best Practice Exception Handling
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a HTTP server that will always result in HTTP timeout, e.g.
const server = http.createServer((req, res) =>
setTimeout(() =>
res.writeHead(200);
res.write('OK');
res.end();
, 2000);
);
server.setTimeout(1000);
server.on('timeout', (socket) =>
// How to produce a custom HTTP response here?
);
HTTP server "timeout" event is emitted with socket
reference. How do I use socket
to encode HTTP response?
I know that I can stitch the response myself at a low-level, e.g.
server.on('timeout', (socket) =>
socket.write([
'HTTP/1.1 408 Request Timeout',
'Connection: close'
].join('n') + 'nn');
socket.end();
);
But is there a way to use the HTTP response interface, i.e. writeHead
/ write
/ end
?
node.js
add a comment |
I have a HTTP server that will always result in HTTP timeout, e.g.
const server = http.createServer((req, res) =>
setTimeout(() =>
res.writeHead(200);
res.write('OK');
res.end();
, 2000);
);
server.setTimeout(1000);
server.on('timeout', (socket) =>
// How to produce a custom HTTP response here?
);
HTTP server "timeout" event is emitted with socket
reference. How do I use socket
to encode HTTP response?
I know that I can stitch the response myself at a low-level, e.g.
server.on('timeout', (socket) =>
socket.write([
'HTTP/1.1 408 Request Timeout',
'Connection: close'
].join('n') + 'nn');
socket.end();
);
But is there a way to use the HTTP response interface, i.e. writeHead
/ write
/ end
?
node.js
add a comment |
I have a HTTP server that will always result in HTTP timeout, e.g.
const server = http.createServer((req, res) =>
setTimeout(() =>
res.writeHead(200);
res.write('OK');
res.end();
, 2000);
);
server.setTimeout(1000);
server.on('timeout', (socket) =>
// How to produce a custom HTTP response here?
);
HTTP server "timeout" event is emitted with socket
reference. How do I use socket
to encode HTTP response?
I know that I can stitch the response myself at a low-level, e.g.
server.on('timeout', (socket) =>
socket.write([
'HTTP/1.1 408 Request Timeout',
'Connection: close'
].join('n') + 'nn');
socket.end();
);
But is there a way to use the HTTP response interface, i.e. writeHead
/ write
/ end
?
node.js
I have a HTTP server that will always result in HTTP timeout, e.g.
const server = http.createServer((req, res) =>
setTimeout(() =>
res.writeHead(200);
res.write('OK');
res.end();
, 2000);
);
server.setTimeout(1000);
server.on('timeout', (socket) =>
// How to produce a custom HTTP response here?
);
HTTP server "timeout" event is emitted with socket
reference. How do I use socket
to encode HTTP response?
I know that I can stitch the response myself at a low-level, e.g.
server.on('timeout', (socket) =>
socket.write([
'HTTP/1.1 408 Request Timeout',
'Connection: close'
].join('n') + 'nn');
socket.end();
);
But is there a way to use the HTTP response interface, i.e. writeHead
/ write
/ end
?
node.js
node.js
asked Mar 23 at 15:17
GajusGajus
31.1k37176323
31.1k37176323
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You could use the setTimeout function on the response object. Consider this simple example:
const http = require('http');
const port = 3000;
const requestHandler = (req, res) =>
res.setTimeout(Math.random() * 2500, () =>
res.writeHead(408);
res.end();
);
setTimeout(() =>
if (res.headersSent)
return;
res.writeHead(200);
res.write('OK');
res.end();
, 2000);
;
const server = http.createServer(requestHandler);
server.listen(port, (err) =>
if (err)
return console.log('an error happened', err)
console.log(`server is listening on $port`)
);
If you call localhost:3000
in your web browser you'll now either see 200 OK or a 408 error. Note that you'll need to handle already sent headers if the random timeout was less than 2000 ms.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55315221%2fhow-to-handle-node-js-http-server-timeout-event%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You could use the setTimeout function on the response object. Consider this simple example:
const http = require('http');
const port = 3000;
const requestHandler = (req, res) =>
res.setTimeout(Math.random() * 2500, () =>
res.writeHead(408);
res.end();
);
setTimeout(() =>
if (res.headersSent)
return;
res.writeHead(200);
res.write('OK');
res.end();
, 2000);
;
const server = http.createServer(requestHandler);
server.listen(port, (err) =>
if (err)
return console.log('an error happened', err)
console.log(`server is listening on $port`)
);
If you call localhost:3000
in your web browser you'll now either see 200 OK or a 408 error. Note that you'll need to handle already sent headers if the random timeout was less than 2000 ms.
add a comment |
You could use the setTimeout function on the response object. Consider this simple example:
const http = require('http');
const port = 3000;
const requestHandler = (req, res) =>
res.setTimeout(Math.random() * 2500, () =>
res.writeHead(408);
res.end();
);
setTimeout(() =>
if (res.headersSent)
return;
res.writeHead(200);
res.write('OK');
res.end();
, 2000);
;
const server = http.createServer(requestHandler);
server.listen(port, (err) =>
if (err)
return console.log('an error happened', err)
console.log(`server is listening on $port`)
);
If you call localhost:3000
in your web browser you'll now either see 200 OK or a 408 error. Note that you'll need to handle already sent headers if the random timeout was less than 2000 ms.
add a comment |
You could use the setTimeout function on the response object. Consider this simple example:
const http = require('http');
const port = 3000;
const requestHandler = (req, res) =>
res.setTimeout(Math.random() * 2500, () =>
res.writeHead(408);
res.end();
);
setTimeout(() =>
if (res.headersSent)
return;
res.writeHead(200);
res.write('OK');
res.end();
, 2000);
;
const server = http.createServer(requestHandler);
server.listen(port, (err) =>
if (err)
return console.log('an error happened', err)
console.log(`server is listening on $port`)
);
If you call localhost:3000
in your web browser you'll now either see 200 OK or a 408 error. Note that you'll need to handle already sent headers if the random timeout was less than 2000 ms.
You could use the setTimeout function on the response object. Consider this simple example:
const http = require('http');
const port = 3000;
const requestHandler = (req, res) =>
res.setTimeout(Math.random() * 2500, () =>
res.writeHead(408);
res.end();
);
setTimeout(() =>
if (res.headersSent)
return;
res.writeHead(200);
res.write('OK');
res.end();
, 2000);
;
const server = http.createServer(requestHandler);
server.listen(port, (err) =>
if (err)
return console.log('an error happened', err)
console.log(`server is listening on $port`)
);
If you call localhost:3000
in your web browser you'll now either see 200 OK or a 408 error. Note that you'll need to handle already sent headers if the random timeout was less than 2000 ms.
answered Mar 23 at 16:08
eoleol
3,03931529
3,03931529
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55315221%2fhow-to-handle-node-js-http-server-timeout-event%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown