With the latest nodejs.
import { setTimeout as sleep} from 'node:timers/promises'; (async () => { console.log('a'); await sleep(2000); console.log('b'); })();