How to delay an http response in ExpressJS

Project: Codever

Enclose the response in setTimeout

router.get(‘/’, async (request, response) => {

const {page, limit} = PaginationQueryParamsHelper.getPageAndLimit(request);
const bookmarks = await PublicBookmarksService.getLatestPublicBoo…


This content originally appeared on DEV Community and was authored by Adrian Matei

Project: Codever

Enclose the response in setTimeout

router.get('/', async (request, response) => {

  const {page, limit} = PaginationQueryParamsHelper.getPageAndLimit(request);
  const bookmarks = await PublicBookmarksService.getLatestPublicBookmarks(page, limit);

  setTimeout((() => {
    return response.send(bookmarks);
  }), 2000)
});

Shared with ❤️ from Codever. Use 👉 copy to mine functionality to add it to your personal snippets collection.


This content originally appeared on DEV Community and was authored by Adrian Matei


Print Share Comment Cite Upload Translate Updates
APA

Adrian Matei | Sciencx (2022-01-27T06:52:01+00:00) How to delay an http response in ExpressJS. Retrieved from https://www.scien.cx/2022/01/27/how-to-delay-an-http-response-in-expressjs/

MLA
" » How to delay an http response in ExpressJS." Adrian Matei | Sciencx - Thursday January 27, 2022, https://www.scien.cx/2022/01/27/how-to-delay-an-http-response-in-expressjs/
HARVARD
Adrian Matei | Sciencx Thursday January 27, 2022 » How to delay an http response in ExpressJS., viewed ,<https://www.scien.cx/2022/01/27/how-to-delay-an-http-response-in-expressjs/>
VANCOUVER
Adrian Matei | Sciencx - » How to delay an http response in ExpressJS. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/01/27/how-to-delay-an-http-response-in-expressjs/
CHICAGO
" » How to delay an http response in ExpressJS." Adrian Matei | Sciencx - Accessed . https://www.scien.cx/2022/01/27/how-to-delay-an-http-response-in-expressjs/
IEEE
" » How to delay an http response in ExpressJS." Adrian Matei | Sciencx [Online]. Available: https://www.scien.cx/2022/01/27/how-to-delay-an-http-response-in-expressjs/. [Accessed: ]
rf:citation
» How to delay an http response in ExpressJS | Adrian Matei | Sciencx | https://www.scien.cx/2022/01/27/how-to-delay-an-http-response-in-expressjs/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.