RE: My First Steem.js Adventure, Part 2: Lessons From My Mentor About Promises

You are viewing a single comment's thread from:

My First Steem.js Adventure, Part 2: Lessons From My Mentor About Promises

in steemdev •  7 years ago 

Good job!,

Keep in mind that you can also use a promesify-type library to transform all the node standard async functions to return promises.

It does exactly the same you end up writing as

return new Promise(function(resolve, reject) {
  ...
});

Hope it helps!

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

Oh interesting, thanks for letting me know! I’ll look into that type of library 🙂

Sorry the typo, it's promisify:

Awesome, thanks for the links!