Written By :Appsierra

Thu Nov 30 2023

5 min read

How to Add a Timeout to Promises in Node.js

Home >> Blogs >> How to Add a Timeout to Promises in Node.js
Timeout to Promises in Node.js

Generally, Node.js has incredible support for non-concurrent programming. And promises with its async/expect punctuation. It excludes the capacity to add a timeout to these promises. Now, we have to deal with the latest React project while incorporating the third-party library. So, this library had various capacities that were offbeat. Yet, they have inclined to never settle and, rather, hanging until the end of time. After some testing, we had the option to make a strategy to add timeouts. Promises using implicit node features. Now, we’ll walk you through how to execute this in your own code, with some helpful enhancements I made en route.

How to Add a Timeout to Promises in Node-js

Well, as a note, the entire models right now be in typescript, yet this will work in plain JavaScript:

1. Making a Timeout 

Presently, we will execute a timeout for our promise by making another promise. Hence, we’ll make another promise. And they can reject after the measure of time. Also, we’ll race the two promises to see which one completes first. Well, The Node Promise API has work in work for this called Promise.race. So, it takes on a rundown of promises. Additionally, then returns the consequence of the primary promise to determine or reject.

2. Clearing the Timeout

Now, one thing that we can do to make this cleaner is clear the timeout we make. Thus, in the event that our unique promise completes before the time lapses. Also, this isn’t vital — since the promise returned by Promise.race will settle when our unique promise settles. Likewise, there isn’t any damage to the timeout promise, rejecting some time after that. For whatever length of time that you don’t have any stateful code in your timeout promise. Moreover, it won’t influence what the first promise set out to. In any case, it’s acceptable practice to be unequivocal about clearing a timeout you set.

So, if you want to clear the timeout, we must store the timeout handle when we make it. We need to clear the timeout when the first promise settles. Furthermore, we’ll at that point clear that handle by considering. Then, on the promise that Promise race returns. Henceforth, you can likewise include a catch call after the block. To deal with whatever necessities to occur if our promise does timeout. Also, This is helpful if you need to log something or reset some piece of your state.

3. Including a Rejection Message 

At present, another helpful enhancement we can create to our timeout is to help an engineer show a pleasant, comprehensible message. So, that will be appearing if our promise doesn’t complete before the predetermined time. Additionally, we should make our capacity to take in a message. And, afterward, incorporate an error with that message when we reject our timeout promise. Furthermore, our capacity permits a discretionary error message to be passed on. 

Besides, this lets us present something supportive to the user. And it will give them further guidelines or instruct them to attempt once more. Consequently, we had our timeout promise call reject as opposed to determining. Because I need it to be certain that an error happened. And, whichever procedure set this timeout should deal with the error case. Usually, you could rather make both your unique promise. And your timeout promise resolve and along these lines not need a rejection message. But I do not want to suggest this.

4. Including Types 

Lastly, we can include great sorts so any purchaser of this feature will know what they’re getting back. At the present time, our capacity has a return sort of Promise<any>. Now, we need our return type to match the return the first promise that gets went in. Since our timeout promise stays away for the indefinite future (it just tosses an error). Additionally, we can recognize what type our return value will be. In addition to this, with these augmentations set up, we have promises that timeout after a time. So, they clear any clocks they set, can take a supportive error message, and have great sorts.   

Let us know when there’re other things you have done to enhance promises in the codebase.

Contact Us

Let our experts elevate your hiring journey. Message us and unlock potential. We'll be in touch.

Phone
blog
Get the latest
articles delivered to
your inbox

Our Popular Articles