DEV Community

Discussion on: Don't make that function async.

Collapse
 
uniibu profile image
uni

Just to note, Async/await does not block the whole Node interpreter, only the async function it self.

Collapse
 
hellokyyt profile image
Kyle Harrison

This is precisely what I was looking for, thank you