by Briebug Team | Dec 21, 2020 | Angular, CLI, Frontend
Welcome to the definitive Angular CLI guide: a multi-part series that will take you from novice to master. This article outlines everything you need to know to get started. If you’re already familiar with the Angular CLI, you can check out our “Mastering...
by Hudson Baker | Nov 20, 2020 | Angular, Frontend
When routing in any application there comes a point where it makes sense architecturally to share data during navigation. Angular has several tools for sharing data across your apps routing system including Route Guards, Route Resolvers, the Route API and the...
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 Briebug Team | Oct 18, 2020 | Angular, Frontend, Rxjs, Typescript
In September of 2016, the javascript world was changed with the release of Angular 2.0. It was a complete rewrite of the AngularJS framework from the ground up. With the removal of “JS” from the name, the Angular team signaled a major shift in their...
by Jon Rista | Aug 19, 2020 | Frontend, Operators, Pipe, Reactive, Rxjs, Testing
RxJs is one of the most powerful, and I believe fundamentally important, libraries for JavaScript and TypeScript in the last decade. RxJs is a library that is not just capable of handling the asynchronous nature of JavaScript in a beautiful way, it is also a library...
by Jon Rista | Aug 4, 2020 | Angular, Frontend, Reactive, Rxjs
Previously in “What is the difference between a Promise and an Observable?”, I covered the basics of what Observables can do above and beyond what Promises can do. That barely scratches the surface of what Observables and RxJs really offer and their...