Uncategorized

Supercharging the Angular CLI with NX

In order to understand why NX exists, we will be talking about Collaboration and how it is impacted by Code Storage and Code Structure. What we do, is write code, which is interpreted by machines but read by human beings. So, to write code that is easily understood even over a long period of times, we have to collaborate with people in our teams. For collaboration to be effective, there are certain things that we need to keep in mind related to code storage and code structure. While these aspects do not necessarily make your collaborations mind-blowing, they do make it easier to have a good collaboration.


Uncategorized

Keynote: Five years of Angular

Angular is a platform for building sophisticated web apps. The platform refers to adding, mixing and matching different technologies to make a very powerful, sophisticated web app. Angular 5 is more popular than Angular JS was before. More developers are using it to produce cooler Web apps and projects which are shown on the internet.  


Uncategorized

Immutable Data Structures for Functional JavaScript

Functional programming is used when implementation of imperative and object-oriented programming starts to become a headache. In functional programming, programs are conceived as just pure functions, meaning that they compute the same output always for the same input. Side effects like changing things in the console or global state are not relatable in functional programming. In fact, they are simply used to take data in, transform the data and send the data out.


Uncategorized

Angular Form Control: Redux Edition

There are several reasons why it is required to integrate redux in to the forms. Firstly, it lowers the
maintenance costs of the form setups on large scale applications from moving form setups out of the components, which can be very helpful when dealing with a lot of forms like in enterprise projects. It centralizes the form data and makes it easier for abstractions or common operations…