HiveBrain v1.2.0
Get Started
← Back to all entries
snippetjavascriptCritical

How can I wait In Node.js (JavaScript)? l need to pause for a period of time

Submitted by: @import:stackoverflow-api··
0
Viewed 0 times
periodhowtimeforcannodepausewaitjavascriptneed

Problem

I'm developing a console script for personal needs. I need to be able to pause for an extended amount of time, but, from my research, Node.js has no way to stop as required. It’s getting hard to read users’ information after a period of time... I’ve seen some code out there, but I believe they have to have other code inside of them for them to work such as:

setTimeout(function() {
}, 3000);


However, I need everything after this line of code to execute after the period of time.

For example,

// start of code
console.log('Welcome to my console,');

some-wait-code-here-for-ten-seconds...

console.log('Blah blah blah blah extra-blah');
// end of code


I've also seen things like

yield sleep(2000);


But Node.js doesn't recognize this.

How can I achieve this extended pause?

Solution

Update Jan 2021: You can even do it in the Node REPL interactive using --experimental-repl-await flag

$ node --experimental-repl-await
> const delay = ms => new Promise(resolve => setTimeout(resolve, ms))
> await delay(1000) /// waiting 1 second.


A new answer to an old question. Today ( Jan 2017 June 2019) it is much easier. You can use the new async/await syntax.
For example:
async function init() {
console.log(1);
await sleep(1000);
console.log(2);
}

function sleep(ms) {
return new Promise((resolve) => {
setTimeout(resolve, ms);
});
}


For using async/await out of the box without installing and plugins, you have to use node-v7 or node-v8, using the --harmony flag.

Update June 2019: By using the latest versions of NodeJS you can use it out of the box. No need to provide command line arguments. Even Google Chrome support it today.

Update May 2020:
Soon you will be able to use the await syntax outside of an async function. In the top level like in this example
await sleep(1000)
function sleep(ms) {
return new Promise((resolve) => {
setTimeout(resolve, ms);
});
}


The proposal is in stage 3.
You can use it today by using webpack 5 (alpha),

Before that becomes available, you can just wrap the script toplevel in a self calling async function:

(async function() {
const sleep = ms => new Promise(resolve => setTimeout(resolve, ms))
console.log(1)
await sleep(1000)
console.log(2)
})()


More info:

  • Harmony Flag in Nodejs: https://nodejs.org/en/docs/es6/



  • All NodeJS Version for download: https://nodejs.org/en/download/releases/

Code Snippets

$ node --experimental-repl-await
> const delay = ms => new Promise(resolve => setTimeout(resolve, ms))
> await delay(1000) /// waiting 1 second.
(async function() {
const sleep = ms => new Promise(resolve => setTimeout(resolve, ms))
console.log(1)
await sleep(1000)
console.log(2)
})()

Context

Stack Overflow Q#14249506, score: 984

Revisions (0)

No revisions yet.