DEV Community

Discussion on: I promise I won't callback anymore

Collapse
 
math2001 profile image
Mathieu PATUREL

const { promisify } = require('util')

So neat!! Didn't know about this function. Also note that if you want to have this already done, you can use mz (I was gonna say fs-promise, but it's been deprecated...).

Next step: async and await!

Collapse
 
damcosset profile image
Damien Cosset

Oh, I didn't know about mz package, good to know.

Yep, now I have to explore async/await. Seems like the new logical wait to deal with asynchronous stuff in Javascript