This article authored by me was published on the Rangle.io blog. You can read it here
Category: Articles
From REST to GraphQL
This article authored by me was published on the Rangle.io blog. You can read it here
Optimize your Angular 2 Application with Tree Shaking
This article authored by me was published on the Rangle.io blog. You can read it here
Immutable Array Operations in Typescript
In a previous blog post we explored how to perform immutable operations to update objects using Object.assign(). This time we are going to explore how to perform immutable operations on an array of objects which is a common pattern in Redux. If you wan’t to learn more about Redux, take a look at the excellent training course “Getting Started with Redux” by Dan Abramov, the creator of the library.
Setting Up a Basic Typescript Environment
In this blog post we are going to cover a basic setup for working with Typescript and Typings in a Node environment. This is the starting point of many other post on this blog.
Continue reading “Setting Up a Basic Typescript Environment”
The Different Levels of Immutability in Javascript
Avoiding mutations in our code is becoming increasingly important in Javascript due to the principles of functional that makes our code easier to predict and to scale. This blog post can be considered a continuation of a previous one: The Limits of Object.assign().
Continue reading “The Different Levels of Immutability in Javascript”
The limits of Object.assign()
So, you have been using Object.assign to create copies of your objects right? Here’s a warning for you. Object.assign does not perform a deep copy. Continue reading “The limits of Object.assign()”
A Gentle Introduction to Webpack
In a previous post, we explored how to create a simple build system for typescript using SystemJS. This time, we are going to create a similar build system only this time using webpack. Continue reading “A Gentle Introduction to Webpack”
Protected: Angular 2 Testing Cookbook
How to Use Typescript with SystemJS
Now that Angular 2 is out and given the importance of Typescript in the Angular 2 ecosystem, it’s time to understand how to create a proper building system for our projects.