angular Angular: Keeping it Fat, Dumb, and Happy An architectural approach to better Angular applications: this article shows you how to keep your Templates declarative and dumb, your Components thin and smart, and your Services fat and happy.
angular Angular and Internet Explorer Supporting Internet Explorer as a browser for your Angular 8.x or Angular 9.x application.
javascript npm Peer Dependencies In this article I clarify what npm Peer Dependencies are and especially when you should use them. Peer Dependencies are listed in the package.json file in the peerDependencies object.
angular Angular Unit Testing @ViewChild This articles explains how to writ unit tests for components with @ViewChild decorators using a stub component
angular Understanding Enumerations This article is an introduction to enumerated types or enum’s in both JavaScript and TypeScript. Unlike TypeScript, JavaScript doesn’t directly support enumerations. So we will look at a way to get some of the benefits of enumerated types in JavaScript.
javascript Angular CLI: camelCase or kebab-case In this article we will learn about Angular CLI: camelCase or kebab-case.
angular Angular Workspace: No Application for You! In this article we will learn about Angular Workspace.
angular The Angular Library Series — Publishing In this article we'll see how to share Angular library with the world by publishing it on npm. We'll review how to name the library, specify its version and what to do with read-me and license Files
angular Angular Testing with Headless Chrome Headless Chrome is a useful tool for running automated tests in environments where it isn’t practical to actually launch a browser. In this article, we explain how to configure Angular CLI to run your Unit and E2E Tests using Headless Chrome.
angular Becoming an Angular Environmentalist In this article I"ll show you how to leverage Angular application environments to pass configuration settings to your application.
angular The Angular Library Series - Building and Packaging In this article we will explore what happens when we build our library, package our library using npm pack. We'll also see how to actually use our library in a separate application.
angular Creating a Library in Angular 6 using Angular CLI and ng-packagr This article takes a close look at what happens when you run "ng new", explores the notion of a workspace and library modules and shows how they can be used in Angular application.
angular Deploy an Angular Application to IIS The Angular Router is a fantastic module for Single Page Apps. However, to deploy it in a Production scenario you will typically need to do some configuration to make it work.