node

Turning promises into responses

After migrating a Node.js module to a new version, I am faced with the problem of unifying promises with callbacks. I opted for the first approach and try to handle the resolution of promises in the Express middle-ware rather than duplicating all the the code in each handler.

Custom form validation in Angular JS

This article is part of the bigger series about my Software Engineering internship this summer. To read all the posts, simply visit the category archive. Today just a quick Angular JS gem on how to create your own form validation directives. I’m still working on the follow up post to the article From Request to…