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;








0















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?










share|improve this question




























    0















    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?










    share|improve this question
























      0












      0








      0








      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?










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 23 at 15:17









      GajusGajus

      31.1k37176323




      31.1k37176323






















          1 Answer
          1






          active

          oldest

          votes


















          0














          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.






          share|improve this answer























            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            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.






            share|improve this answer



























              0














              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.






              share|improve this answer

























                0












                0








                0







                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.






                share|improve this answer













                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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 23 at 16:08









                eoleol

                3,03931529




                3,03931529





























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript