DEV Community

Discussion on: The perfect architecture flow for your next Node.js project

Collapse
 
pixelscommander profile image
Denis Radin

"Use promises" is a bit 2015 kind of advice. Async / await is widely adopted and it is a step ahead of Promises.

Collapse
 
wilomgfx profile image
William Cantin • Edited

That's like saying you won't be using promises with async/await.

It's just a different way of consuming them.

Collapse
 
brumor profile image
Paul Bricout

Exactly, I use promises exactly to get my async function to await for a second function to finish. They are different things