async / await (Node.js)

async/await is syntax that makes Promise-based code read like ordinary synchronous code. An async function returns a Promise, and await pauses it until a…