by Briebug Team | Aug 1, 2020 | Angular, CLI, JavaScript, Typescript, UX/UI
What are Angular Workspaces and Libraries, and why should I care? Angular version 6 introduced Workspaces and Libraries to accommodate the increasingly popular monorepo pattern. Version 7 made this strategy easier with the addition of the Angular CLI...
by Briebug Team | Aug 1, 2020 | Angular, Frontend, JavaScript, Typescript
First, why would I want to? Angular’s default change detection strategy may work well for a hobby app or presentation demo but if you’re dealing with a large or enterprise application, you’re likely going to take a performance hit. That’s...
by Briebug Team | Jun 25, 2020 | Angular, Frontend, JavaScript, Typescript
Maybe you too have asked yourself this question. The short answer is innerHtml. To understand more, continue on. First let’s talk about why you’d want to bind HTML within an Angular component. You may have some user generated HTML that you want to render...
by Kevin Schucard | May 29, 2020 | Angular, Frontend, JavaScript, Typescript
The constructor and ngOnInit are both available lifecycle hooks when developing Angular applications. Both provide specific benefits, and understanding the difference allows you to develop predictable, extendable, and testable applications. Often the constructor ends...
by Briebug Team | Feb 5, 2019 | Angular, Cypress, Frontend, Schematics, Typescript
If you haven’t heard of Cypress yet, I’m sure you will soon. Cypress is a self-proclaimed “developer-friendly” open-source end-to-end testing framework. It offers features such as time travel, dev tool debugging, live reloads, automatic waiting...
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...