Month: <span>April 2017</span>

Heroic.AutoMapper 4.0 Released!

Thanks to Chuck Bryan, Heroic.AutoMapper is now compatible with the latest-and-greatest from Jimmy Bogard’s AutoMapper library. Update now for AutoMapper 6 support, and as usual, let me know if you have any problems after the upgrade. Thanks, Chuck!

Read More

Practical Promises in JavaScript – Returning New Promises with Chaining Promises

Welcome to part 4 of my Practical Promises series! In part 1, we talked about what promises are and what they can be used for. In part 2, we started looking at how we can create promises. Then in part 3, we saw how each call to then actually makes a new promise, and that…

Read More

Practical Promises in JavaScript – The Basics of Promise Chaining

Welcome to part 3 of my Practical Promises series! In part 1, we talked about what promises are and what they can be used for. In part 2, we started looking at how we can create promises. Today, we’re going to look at how promises can be chained together. [more] What Happens If… We’ve seen…

Read More

Practical Promises in JavaScript – Making Promises

In part 1 of our series, we covered the basics of promises. We know what they are. We know how to use then to receive the value of a promise once it’s available. We know how to use catch to be notified when something goes wrong. But we haven’t yet created a promise! In this…

Read More