GithubHelp home page GithubHelp logo

Comments (2)

TheDecipherer avatar TheDecipherer commented on September 1, 2024
const express = require('express')

const app = express()

app.use(express.json())

app.post('/get', async (req, res) => {
    console.log(req.body)
    const promise = new Promise(resolve => {
        setTimeout(resolve, 8000)
    })

    await promise
    
    console.log(req.body)
    res.send(req.body)
})

app.listen(8000, () => {
    console.log("App running in port 8000")
})

This was my sample code. I kept the timeout fixed and the request did not wait. The same should be the case for random timeouts too. Please recheck.

from express.

VenkatSaiVikram avatar VenkatSaiVikram commented on September 1, 2024

image
This is my modified code and console log order.. first request enters and waits for 8 seconds and seconds request waits for 16 seconds (8 for first and after first completes 8 for second)

I tried the same code with another machine.. its working fine.. what might be the issue with my machine??

image
console log with time for ref.

from express.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.