sonar
Angular and SonarQube
Here's a few steps to run SonarQube on Angular projects.
sonar
Here's a few steps to run SonarQube on Angular projects.
internet explorer
I have an app developed with Angular. For the past weeks I had an issue that some users would get the page load as plain text: The end-of-life for IE11 is supposed to be in 2020 for normal windows machines. However, IE11 will live a bit longer on Windows Server
angular
TL;DR: Update your typescript version dependency. These days we're updating some angular apps to the most recent version (6 at the time of writing this entry). Everything is nice, with the exception of various errors we get because of the other dependencies. The most recent one was
2
Below are some fixes I had to apply in order to make Angular 2 tests work with karma. Binding * Error: Can't bind to 'ngModel' since it isn't a known property of 'input' * Solution: Import FormsModulein your test: TestBed.configureTestingModule({ declarations: [AppComponent], imports:
angular
TL;DR: Use ChangeDetectorRef's detectChanges() at the end of your callback code. While developing my electron.js app, I've had the following workflow: * I have an input element and a button * The input element is capable of editing a path * The button triggers a File Open
angular
Traditionally, I've been a LESS supporter. The way it does mixins for example seems to me more intuitive. However, I noticed that my go-to framework (bootstrap) is now doing SASS-first and then LESS. So, one adapts... and the option in angular-cli makes things less painful. What was painful
angular
I wanted to create a skeleton with Electron, Angular 2, capable of live reload while in development. I've settled on the following framework: * Electron (d'oh!) * Angular 2 * Angular CLI (because it makes it easy to generate boilerplate code) * SASS (SCSS in fact) * Webpack 2 and * Babel
angular
The decision has been made for me since I'm new to Angular in general and the CLI offers a package deal particularly where code generation and initial package management is concerned. There's also the boon of webpack, which is used as engine. Although the balance tilts
3
I needed to set up a sticky footer as part of my Angular and Material Design experiment. You would not believe how many resource I could find (some of them listed below)! Unfortunately, most of them had a problem; blank page looked fine (header and footer in the right places)