On The Subject Of Javascript
-
Wrapping Async functions in Promises Jan 15, 2016A lot of core APIs in node.js have two forms for each function - synchronous and asynchronous. The synchronous versions block until the function has completed, while the asynchronous versions do not block - instead …