
Building Angular and React Applications Together With Nx
This blog post is the first about how Nx works with React. You can also read a more detailed blog post by Jack Hsu here: “Powering up React Development with Nx.”
Angular Unit Testing @ViewChild
If you have been using Angular for any length of time, you have probably run into a parent component that references a child component using @ViewChild. Unit testing the parent component is trivial if you just want to include the child component in the test. However, it gets tricky when we want to mock the child component with a stub.

Internationalize Your Angular App with ngx-translate
At some point, your web application may require serving a multilingual user base. Internationalization, or i18n for short, is the process by which you make your app usable for those with a different native language. While Angular has some built-in i18n functionality, ngx-translate is a third-party package which makes the process dead simple.
Building a Transaction Sservice for Managing Large Sscale Eediting Experiences
A common challenge developers have to tackle when building applications consuming large data sets, is how to create a maintainable and scalable user experience for editing. They may face hundreds of thousands and even millions of records on which they execute CRUD operations that need to be sent to a server and saved to a database.

How to Implement File Uploading in Angular Reactive Forms
In this article, we’ll walk you through the process of creating a reactive form that includes a file upload, along with the normal form fields. Along the way, we’ll create a custom form control for our file input, add validation and create custom RxJS operators.
Why Class/Component Inheritance in Your Angular App Might Not Be Good
When developing your applications you inevitably come across situations where you need to create functionalities/features or even functions which are similar, but spreaded over multiple components or even modules. This means you have to find a solution for code reusability to keep your code maintainable. In Angular, and Javascript applications in general, there are many patterns and solutions to set this up. As Angular is entirely Class based, inheritance could be a solution. Here’s why that might not be the best solution.