by Kevin Schuchard | Oct 19, 2020 | Angular, Frontend, UX/UI
Container/presenter is a pattern for organizing UI components based on their responsibility. This separation of concerns simplifies how applications are built while making them easier to test, maintain, and update over time. It also encourages loosely coupled...
by Kevin Schuchard | Jun 27, 2019 | Angular, Frontend, Interceptors, JavaScript
Angular HTTP Interceptors provide a flexible mechanism to control your application when dealing with network-related resources. They’re similar to middle-ware in other frameworks and allow network logic to be abstracted and reused. Resources To Follow ? Demo...
by Kevin Schuchard | Nov 19, 2018 | Angular, Frontend, JavaScript, Schematics, Typescript, Unit Testing
Build Schematics quick and easy with visual diffs. Combining scripts, package manager linking, and your local version control system, you can quickly and easily develop and test schematics against a local project with visual feedback. Why Build Testing Schematics When...
by Kevin Schuchard | Jul 18, 2017 | Angular, Frontend, Jest, Testing
Background Schematics have been around for a little while in the Angular CLI ecosystem and they’ve proven to be immensely beneficial for frontend developers. If you’re unsure of what schematics are, when you run ng new my-app or ng generate component...