Create a nodejs backend app that use Express with Typescript

I am going to set up a nodejs backend app that use express with typescript. In other words, create a REST API in nodejs that uses TypeScript with the help of the express framework. For the database I am going to go with MySQL. With a backend like this you can easily have axios or …

Great way to map up objects in TypeScript to keep objects initialized

Available in TypeScript 2.1 there is now the possibility to set partial properties values of objects, making it very easy to initialize new objects. I had the problem before that whenever I wanted to create a new object and also initilize a new object, I had to set my values in the constructor, all my …